upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / arch / ppc / syslib / mpc10x_common.c
1 /*
2  * arch/ppc/syslib/mpc10x_common.c
3  *
4  * Common routines for the Motorola SPS MPC106, MPC107 and MPC8240 Host bridge,
5  * Mem ctlr, EPIC, etc.
6  *
7  * Author: Mark A. Greer
8  *         mgreer@mvista.com
9  *
10  * 2001 (c) MontaVista, Software, Inc.  This file is licensed under
11  * the terms of the GNU General Public License version 2.  This program
12  * is licensed "as is" without any warranty of any kind, whether express
13  * or implied.
14  */
15
16 /*
17  * *** WARNING - A BAT MUST be set to access the PCI config addr/data regs ***
18  */
19
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/pci.h>
23 #include <linux/slab.h>
24
25 #include <asm/byteorder.h>
26 #include <asm/io.h>
27 #include <asm/irq.h>
28 #include <asm/uaccess.h>
29 #include <asm/machdep.h>
30 #include <asm/pci-bridge.h>
31 #include <asm/open_pic.h>
32 #include <asm/mpc10x.h>
33 #include <asm/ocp.h>
34
35 /* The OCP structure is fixed by code below, before OCP initialises.
36    paddr depends on where the board places the EUMB.
37     - fixed in mpc10x_bridge_init().
38    irq depends on two things:
39     > does the board use the EPIC at all? (PCORE does not).
40     > is the EPIC in serial or parallel mode?
41     - fixed in mpc10x_set_openpic().
42 */
43
44 #ifdef CONFIG_MPC10X_OPENPIC
45 #ifdef CONFIG_EPIC_SERIAL_MODE
46 #define EPIC_IRQ_BASE (epic_serial_mode ? 16 : 5)
47 #else
48 #define EPIC_IRQ_BASE 5
49 #endif
50 #define MPC10X_I2C_IRQ (EPIC_IRQ_BASE + NUM_8259_INTERRUPTS)
51 #define MPC10X_DMA0_IRQ (EPIC_IRQ_BASE + 1 + NUM_8259_INTERRUPTS)
52 #define MPC10X_DMA1_IRQ (EPIC_IRQ_BASE + 2 + NUM_8259_INTERRUPTS)
53 #else
54 #define MPC10X_I2C_IRQ OCP_IRQ_NA
55 #define MPC10X_DMA0_IRQ OCP_IRQ_NA
56 #define MPC10X_DMA1_IRQ OCP_IRQ_NA
57 #endif
58
59
60 struct ocp_def core_ocp[] = {
61         { .vendor       = OCP_VENDOR_INVALID
62         }
63 };
64
65 static struct ocp_fs_i2c_data mpc10x_i2c_data = {
66         .flags          = 0
67 };
68 static struct ocp_def mpc10x_i2c_ocp = {
69         .vendor         = OCP_VENDOR_MOTOROLA,
70         .function       = OCP_FUNC_IIC,
71         .index          = 0,
72         .additions      = &mpc10x_i2c_data
73 };
74
75 static struct ocp_def mpc10x_dma_ocp[2] = {
76 {       .vendor         = OCP_VENDOR_MOTOROLA,
77         .function       = OCP_FUNC_DMA,
78         .index          = 0 },
79 {       .vendor         = OCP_VENDOR_MOTOROLA,
80         .function       = OCP_FUNC_DMA,
81         .index          = 1 }
82 };
83
84 /* Set resources to match bridge memory map */
85 void __init
86 mpc10x_bridge_set_resources(int map, struct pci_controller *hose)
87 {
88
89         switch (map) {
90                 case MPC10X_MEM_MAP_A:
91                         pci_init_resource(&hose->io_resource,
92                                         0x00000000,
93                                         0x3f7fffff,
94                                         IORESOURCE_IO,
95                                         "PCI host bridge");
96
97                         pci_init_resource (&hose->mem_resources[0],
98                                         0xc0000000,
99                                         0xfeffffff,
100                                         IORESOURCE_MEM,
101                                         "PCI host bridge");
102                         break;
103                 case MPC10X_MEM_MAP_B:
104                         pci_init_resource(&hose->io_resource,
105                                         0x00000000,
106                                         0x00bfffff,
107                                         IORESOURCE_IO,
108                                         "PCI host bridge");
109
110                         pci_init_resource (&hose->mem_resources[0],
111                                         0x80000000,
112                                         0xfcffffff,
113                                         IORESOURCE_MEM,
114                                         "PCI host bridge");
115                         break;
116                 default:
117                         printk("mpc10x_bridge_set_resources: "
118                                         "Invalid map specified\n");
119                         if (ppc_md.progress)
120                                 ppc_md.progress("mpc10x:exit1", 0x100);
121         }
122 }
123 /*
124  * Do some initialization and put the EUMB registers at the specified address
125  * (also map the EPIC registers into virtual space--OpenPIC_Addr will be set).
126  *
127  * The EPIC is not on the 106, only the 8240 and 107.
128  */
129 int __init
130 mpc10x_bridge_init(struct pci_controller *hose,
131                    uint current_map,
132                    uint new_map,
133                    uint phys_eumb_base)
134 {
135         int     host_bridge, picr1, picr1_bit;
136         ulong   pci_config_addr, pci_config_data;
137         u_char  pir, byte;
138
139         if (ppc_md.progress) ppc_md.progress("mpc10x:enter", 0x100);
140
141         /* Set up for current map so we can get at config regs */
142         switch (current_map) {
143                 case MPC10X_MEM_MAP_A:
144                         setup_indirect_pci(hose,
145                                            MPC10X_MAPA_CNFG_ADDR,
146                                            MPC10X_MAPA_CNFG_DATA);
147                         break;
148                 case MPC10X_MEM_MAP_B:
149                         setup_indirect_pci(hose,
150                                            MPC10X_MAPB_CNFG_ADDR,
151                                            MPC10X_MAPB_CNFG_DATA);
152                         break;
153                 default:
154                         printk("mpc10x_bridge_init: %s\n",
155                                 "Invalid current map specified");
156                         if (ppc_md.progress)
157                                 ppc_md.progress("mpc10x:exit1", 0x100);
158                         return -1;
159         }
160
161         /* Make sure it's a supported bridge */
162         early_read_config_dword(hose,
163                                 0,
164                                 PCI_DEVFN(0,0),
165                                 PCI_VENDOR_ID,
166                                 &host_bridge);
167
168         switch (host_bridge) {
169                 case MPC10X_BRIDGE_106:
170                 case MPC10X_BRIDGE_8240:
171                 case MPC10X_BRIDGE_107:
172                 case MPC10X_BRIDGE_8245:
173                         break;
174                 default:
175                         if (ppc_md.progress)
176                                 ppc_md.progress("mpc10x:exit2", 0x100);
177                         return -1;
178         }
179
180         switch (new_map) {
181                 case MPC10X_MEM_MAP_A:
182                         MPC10X_SETUP_HOSE(hose, A);
183                         pci_config_addr = MPC10X_MAPA_CNFG_ADDR;
184                         pci_config_data = MPC10X_MAPA_CNFG_DATA;
185                         picr1_bit = MPC10X_CFG_PICR1_ADDR_MAP_A;
186                         break;
187                 case MPC10X_MEM_MAP_B:
188                         MPC10X_SETUP_HOSE(hose, B);
189                         pci_config_addr = MPC10X_MAPB_CNFG_ADDR;
190                         pci_config_data = MPC10X_MAPB_CNFG_DATA;
191                         picr1_bit = MPC10X_CFG_PICR1_ADDR_MAP_B;
192                         break;
193                 default:
194                         printk("mpc10x_bridge_init: %s\n",
195                                 "Invalid new map specified");
196                         if (ppc_md.progress)
197                                 ppc_md.progress("mpc10x:exit3", 0x100);
198                         return -1;
199         }
200
201         /* Make bridge use the 'new_map', if not already usng it */
202         if (current_map != new_map) {
203                 early_read_config_dword(hose,
204                                         0,
205                                         PCI_DEVFN(0,0),
206                                         MPC10X_CFG_PICR1_REG,
207                                         &picr1);
208
209                 picr1 = (picr1 & ~MPC10X_CFG_PICR1_ADDR_MAP_MASK) |
210                          picr1_bit;
211
212                 early_write_config_dword(hose,
213                                          0,
214                                          PCI_DEVFN(0,0),
215                                          MPC10X_CFG_PICR1_REG,
216                                          picr1);
217
218                 asm volatile("sync");
219
220                 /* Undo old mappings & map in new cfg data/addr regs */
221                 iounmap((void *)hose->cfg_addr);
222                 iounmap((void *)hose->cfg_data);
223
224                 setup_indirect_pci(hose,
225                                    pci_config_addr,
226                                    pci_config_data);
227         }
228
229         /* Setup resources to match map */
230         mpc10x_bridge_set_resources(new_map, hose);
231
232         /*
233          * Want processor accesses of 0xFDxxxxxx to be mapped
234          * to PCI memory space at 0x00000000.  Do not want
235          * host bridge to respond to PCI memory accesses of
236          * 0xFDxxxxxx.  Do not want host bridge to respond
237          * to PCI memory addresses 0xFD000000-0xFDFFFFFF;
238          * want processor accesses from 0x000A0000-0x000BFFFF
239          * to be forwarded to system memory.
240          *
241          * Only valid if not in agent mode and using MAP B.
242          */
243         if (new_map == MPC10X_MEM_MAP_B) {
244                 early_read_config_byte(hose,
245                                        0,
246                                        PCI_DEVFN(0,0),
247                                        MPC10X_CFG_MAPB_OPTIONS_REG,
248                                        &byte);
249
250                 byte &= ~(MPC10X_CFG_MAPB_OPTIONS_PFAE  |
251                           MPC10X_CFG_MAPB_OPTIONS_PCICH |
252                           MPC10X_CFG_MAPB_OPTIONS_PROCCH);
253
254                 if (host_bridge != MPC10X_BRIDGE_106) {
255                         byte |= MPC10X_CFG_MAPB_OPTIONS_CFAE;
256                 }
257
258                 early_write_config_byte(hose,
259                                         0,
260                                         PCI_DEVFN(0,0),
261                                         MPC10X_CFG_MAPB_OPTIONS_REG,
262                                         byte);
263         }
264
265         if (host_bridge != MPC10X_BRIDGE_106) {
266                 early_read_config_byte(hose,
267                                        0,
268                                        PCI_DEVFN(0,0),
269                                        MPC10X_CFG_PIR_REG,
270                                        &pir);
271
272                 if (pir != MPC10X_CFG_PIR_HOST_BRIDGE) {
273                         printk("Host bridge in Agent mode\n");
274                         /* Read or Set LMBAR & PCSRBAR? */
275                 }
276                 
277                 /* Set base addr of the 8240/107 EUMB.  */
278                 early_write_config_dword(hose,
279                                          0,
280                                          PCI_DEVFN(0,0),
281                                          MPC10X_CFG_EUMBBAR,
282                                          phys_eumb_base);
283 #ifdef CONFIG_MPC10X_OPENPIC
284                 /* Map EPIC register part of EUMB into vitual memory  - PCORE
285                    uses an i8259 instead of EPIC. */
286                 OpenPIC_Addr =
287                         ioremap(phys_eumb_base + MPC10X_EUMB_EPIC_OFFSET,
288                                 MPC10X_EUMB_EPIC_SIZE);
289 #endif
290                 mpc10x_i2c_ocp.paddr = phys_eumb_base + MPC10X_EUMB_I2C_OFFSET;
291                 mpc10x_i2c_ocp.irq = MPC10X_I2C_IRQ;
292                 ocp_add_one_device(&mpc10x_i2c_ocp);
293                 mpc10x_dma_ocp[0].paddr = phys_eumb_base +
294                                         MPC10X_EUMB_DMA_OFFSET + 0x100;
295                 mpc10x_dma_ocp[0].irq = MPC10X_DMA0_IRQ;
296                 ocp_add_one_device(&mpc10x_dma_ocp[0]);
297                 mpc10x_dma_ocp[1].paddr = phys_eumb_base +
298                                         MPC10X_EUMB_DMA_OFFSET + 0x200;
299                 mpc10x_dma_ocp[1].irq = MPC10X_DMA1_IRQ;
300                 ocp_add_one_device(&mpc10x_dma_ocp[1]);
301         }
302
303 #ifdef CONFIG_MPC10X_STORE_GATHERING
304         mpc10x_enable_store_gathering(hose);
305 #else
306         mpc10x_disable_store_gathering(hose);
307 #endif
308
309         if (ppc_md.progress) ppc_md.progress("mpc10x:exit", 0x100);
310         return 0;
311 }
312
313 /*
314  * Need to make our own PCI config space access macros because
315  * mpc10x_get_mem_size() is called before the data structures are set up for
316  * the 'early_xxx' and 'indirect_xxx' routines to work.
317  * Assumes bus 0.
318  */
319 #define MPC10X_CFG_read(val, addr, type, op)    *val = op((type)(addr))
320 #define MPC10X_CFG_write(val, addr, type, op)   op((type *)(addr), (val))
321
322 #define MPC10X_PCI_OP(rw, size, type, op, mask)                         \
323 static void                                                             \
324 mpc10x_##rw##_config_##size(uint *cfg_addr, uint *cfg_data, int devfn, int offset, type val) \
325 {                                                                       \
326         out_be32(cfg_addr,                                              \
327                  ((offset & 0xfc) << 24) | (devfn << 16)                \
328                  | (0 << 8) | 0x80);                                    \
329         MPC10X_CFG_##rw(val, cfg_data + (offset & mask), type, op);     \
330         return;                                                         \
331 }
332
333 MPC10X_PCI_OP(read,  byte,  u8 *, in_8, 3)
334 MPC10X_PCI_OP(read,  dword, u32 *, in_le32, 0)
335 #if 0   /* Not used */
336 MPC10X_PCI_OP(write, byte,  u8, out_8, 3)
337 MPC10X_PCI_OP(read,  word,  u16 *, in_le16, 2)
338 MPC10X_PCI_OP(write, word,  u16, out_le16, 2)
339 MPC10X_PCI_OP(write, dword, u32, out_le32, 0)
340 #endif
341
342 /*
343  * Read the memory controller registers to determine the amount of memory in
344  * the system.  This assumes that the firmware has correctly set up the memory
345  * controller registers.
346  */
347 unsigned long __init
348 mpc10x_get_mem_size(uint mem_map)
349 {
350         uint                    *config_addr, *config_data, val;
351         ulong                   start, end, total, offset;
352         int                     i;
353         u_char                  bank_enables;
354
355         switch (mem_map) {
356                 case MPC10X_MEM_MAP_A:
357                         config_addr = (uint *)MPC10X_MAPA_CNFG_ADDR;
358                         config_data = (uint *)MPC10X_MAPA_CNFG_DATA;
359                         break;
360                 case MPC10X_MEM_MAP_B:
361                         config_addr = (uint *)MPC10X_MAPB_CNFG_ADDR;
362                         config_data = (uint *)MPC10X_MAPB_CNFG_DATA;
363                         break;
364                 default:
365                         return 0;
366         }
367
368         mpc10x_read_config_byte(config_addr,
369                                 config_data,
370                                 PCI_DEVFN(0,0),
371                                 MPC10X_MCTLR_MEM_BANK_ENABLES,
372                                 &bank_enables);
373
374         total = 0;
375
376         for (i=0; i<8; i++) {
377                 if (bank_enables & (1 << i)) {
378                         offset = MPC10X_MCTLR_MEM_START_1 + ((i > 3) ? 4 : 0);
379                         mpc10x_read_config_dword(config_addr,
380                                                  config_data,
381                                                  PCI_DEVFN(0,0),
382                                                  offset,
383                                                  &val);
384                         start = (val >> ((i & 3) << 3)) & 0xff;
385
386                         offset = MPC10X_MCTLR_EXT_MEM_START_1 + ((i>3) ? 4 : 0);
387                         mpc10x_read_config_dword(config_addr,
388                                                  config_data,
389                                                  PCI_DEVFN(0,0),
390                                                  offset,
391                                                  &val);
392                         val = (val >> ((i & 3) << 3)) & 0x03;
393                         start = (val << 28) | (start << 20);
394
395                         offset = MPC10X_MCTLR_MEM_END_1 + ((i > 3) ? 4 : 0);
396                         mpc10x_read_config_dword(config_addr,
397                                                  config_data,
398                                                  PCI_DEVFN(0,0),
399                                                  offset,
400                                                  &val);
401                         end = (val >> ((i & 3) << 3)) & 0xff;
402
403                         offset = MPC10X_MCTLR_EXT_MEM_END_1 + ((i > 3) ? 4 : 0);
404                         mpc10x_read_config_dword(config_addr,
405                                                  config_data,
406                                                  PCI_DEVFN(0,0),
407                                                  offset,
408                                                  &val);
409                         val = (val >> ((i & 3) << 3)) & 0x03;
410                         end = (val << 28) | (end << 20) | 0xfffff;
411
412                         total += (end - start + 1);
413                 }
414         }
415
416         return total;
417 }
418
419 int __init
420 mpc10x_enable_store_gathering(struct pci_controller *hose)
421 {
422         uint picr1;
423
424         early_read_config_dword(hose,
425                                 0,
426                                 PCI_DEVFN(0,0),
427                                 MPC10X_CFG_PICR1_REG,
428                                 &picr1);
429
430         picr1 |= MPC10X_CFG_PICR1_ST_GATH_EN;
431
432         early_write_config_dword(hose,
433                                 0,
434                                 PCI_DEVFN(0,0),
435                                 MPC10X_CFG_PICR1_REG,
436                                 picr1);
437
438         return 0;
439 }
440
441 int __init
442 mpc10x_disable_store_gathering(struct pci_controller *hose)
443 {
444         uint picr1;
445
446         early_read_config_dword(hose,
447                                 0,
448                                 PCI_DEVFN(0,0),
449                                 MPC10X_CFG_PICR1_REG,
450                                 &picr1);
451
452         picr1 &= ~MPC10X_CFG_PICR1_ST_GATH_EN;
453
454         early_write_config_dword(hose,
455                                 0,
456                                 PCI_DEVFN(0,0),
457                                 MPC10X_CFG_PICR1_REG,
458                                 picr1);
459
460         return 0;
461 }
462
463 #ifdef CONFIG_MPC10X_OPENPIC
464 void __init mpc10x_set_openpic(void)
465 {
466         /* Map external IRQs */
467         openpic_set_sources(0, EPIC_IRQ_BASE, OpenPIC_Addr + 0x10200);
468         /* Skip reserved space and map i2c and DMA Ch[01] */
469         openpic_set_sources(EPIC_IRQ_BASE, 3, OpenPIC_Addr + 0x11020);
470         /* Skip reserved space and map Message Unit Interrupt (I2O) */
471         openpic_set_sources(EPIC_IRQ_BASE + 3, 1, OpenPIC_Addr + 0x110C0);
472
473         openpic_init(NUM_8259_INTERRUPTS);
474 }
475 #endif