[PATCH] powerpc: trivial: modify comments to refer to new location of files
[deliverable/linux.git] / arch / ppc / platforms / 85xx / mpc85xx_cds_common.c
1 /*
2 * MPC85xx CDS board specific routines
3 *
4 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
5 *
6 * Copyright 2004 Freescale Semiconductor, Inc
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14 #include <linux/config.h>
15 #include <linux/stddef.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/errno.h>
19 #include <linux/reboot.h>
20 #include <linux/pci.h>
21 #include <linux/kdev_t.h>
22 #include <linux/major.h>
23 #include <linux/console.h>
24 #include <linux/delay.h>
25 #include <linux/seq_file.h>
26 #include <linux/serial.h>
27 #include <linux/module.h>
28 #include <linux/root_dev.h>
29 #include <linux/initrd.h>
30 #include <linux/tty.h>
31 #include <linux/serial_core.h>
32 #include <linux/fsl_devices.h>
33
34 #include <asm/system.h>
35 #include <asm/pgtable.h>
36 #include <asm/page.h>
37 #include <asm/atomic.h>
38 #include <asm/time.h>
39 #include <asm/todc.h>
40 #include <asm/io.h>
41 #include <asm/machdep.h>
42 #include <asm/open_pic.h>
43 #include <asm/i8259.h>
44 #include <asm/bootinfo.h>
45 #include <asm/pci-bridge.h>
46 #include <asm/mpc85xx.h>
47 #include <asm/irq.h>
48 #include <asm/immap_85xx.h>
49 #include <asm/cpm2.h>
50 #include <asm/ppc_sys.h>
51 #include <asm/kgdb.h>
52
53 #include <mm/mmu_decl.h>
54 #include <syslib/cpm2_pic.h>
55 #include <syslib/ppc85xx_common.h>
56 #include <syslib/ppc85xx_setup.h>
57
58
59 #ifndef CONFIG_PCI
60 unsigned long isa_io_base = 0;
61 unsigned long isa_mem_base = 0;
62 #endif
63
64 extern unsigned long total_memory; /* in mm/init */
65
66 unsigned char __res[sizeof (bd_t)];
67
68 static int cds_pci_slot = 2;
69 static volatile u8 * cadmus;
70
71 /* Internal interrupts are all Level Sensitive, and Positive Polarity */
72 static u_char mpc85xx_cds_openpic_initsenses[] __initdata = {
73 MPC85XX_INTERNAL_IRQ_SENSES,
74 #if defined(CONFIG_PCI)
75 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 0: PCI1 slot */
76 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 1: PCI1 slot */
77 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 2: PCI1 slot */
78 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 3: PCI1 slot */
79 #else
80 0x0, /* External 0: */
81 0x0, /* External 1: */
82 0x0, /* External 2: */
83 0x0, /* External 3: */
84 #endif
85 0x0, /* External 4: */
86 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 5: PHY */
87 0x0, /* External 6: */
88 0x0, /* External 7: */
89 0x0, /* External 8: */
90 0x0, /* External 9: */
91 0x0, /* External 10: */
92 #if defined(CONFIG_85xx_PCI2) && defined(CONFIG_PCI)
93 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 11: PCI2 slot 0 */
94 #else
95 0x0, /* External 11: */
96 #endif
97 };
98
99 /* ************************************************************************ */
100 int
101 mpc85xx_cds_show_cpuinfo(struct seq_file *m)
102 {
103 uint pvid, svid, phid1;
104 uint memsize = total_memory;
105 bd_t *binfo = (bd_t *) __res;
106 unsigned int freq;
107
108 /* get the core frequency */
109 freq = binfo->bi_intfreq;
110
111 pvid = mfspr(SPRN_PVR);
112 svid = mfspr(SPRN_SVR);
113
114 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
115 seq_printf(m, "Machine\t\t: CDS - MPC%s (%x)\n", cur_ppc_sys_spec->ppc_sys_name, cadmus[CM_VER]);
116 seq_printf(m, "clock\t\t: %dMHz\n", freq / 1000000);
117 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
118 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
119
120 /* Display cpu Pll setting */
121 phid1 = mfspr(SPRN_HID1);
122 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
123
124 /* Display the amount of memory */
125 seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
126
127 return 0;
128 }
129
130 #ifdef CONFIG_CPM2
131 static irqreturn_t cpm2_cascade(int irq, void *dev_id, struct pt_regs *regs)
132 {
133 while((irq = cpm2_get_irq(regs)) >= 0)
134 __do_IRQ(irq, regs);
135 return IRQ_HANDLED;
136 }
137
138 static struct irqaction cpm2_irqaction = {
139 .handler = cpm2_cascade,
140 .flags = SA_INTERRUPT,
141 .mask = CPU_MASK_NONE,
142 .name = "cpm2_cascade",
143 };
144 #endif /* CONFIG_CPM2 */
145
146 void __init
147 mpc85xx_cds_init_IRQ(void)
148 {
149 bd_t *binfo = (bd_t *) __res;
150 int i;
151
152 /* Determine the Physical Address of the OpenPIC regs */
153 phys_addr_t OpenPIC_PAddr = binfo->bi_immr_base + MPC85xx_OPENPIC_OFFSET;
154 OpenPIC_Addr = ioremap(OpenPIC_PAddr, MPC85xx_OPENPIC_SIZE);
155 OpenPIC_InitSenses = mpc85xx_cds_openpic_initsenses;
156 OpenPIC_NumInitSenses = sizeof (mpc85xx_cds_openpic_initsenses);
157
158 /* Skip reserved space and internal sources */
159 #ifdef CONFIG_MPC8548
160 openpic_set_sources(0, 48, OpenPIC_Addr + 0x10200);
161 #else
162 openpic_set_sources(0, 32, OpenPIC_Addr + 0x10200);
163 #endif
164 /* Map PIC IRQs 0-11 */
165 openpic_set_sources(48, 12, OpenPIC_Addr + 0x10000);
166
167 /* we let openpic interrupts starting from an offset, to
168 * leave space for cascading interrupts underneath.
169 */
170 openpic_init(MPC85xx_OPENPIC_IRQ_OFFSET);
171
172 #ifdef CONFIG_PCI
173 openpic_hookup_cascade(PIRQ0A, "82c59 cascade", i8259_irq);
174
175 i8259_init(0, 0);
176 #endif
177
178 #ifdef CONFIG_CPM2
179 /* Setup CPM2 PIC */
180 cpm2_init_IRQ();
181
182 setup_irq(MPC85xx_IRQ_CPM, &cpm2_irqaction);
183 #endif
184
185 return;
186 }
187
188 #ifdef CONFIG_PCI
189 /*
190 * interrupt routing
191 */
192 int
193 mpc85xx_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
194 {
195 struct pci_controller *hose = pci_bus_to_hose(dev->bus->number);
196
197 if (!hose->index)
198 {
199 /* Handle PCI1 interrupts */
200 char pci_irq_table[][4] =
201 /*
202 * PCI IDSEL/INTPIN->INTLINE
203 * A B C D
204 */
205
206 /* Note IRQ assignment for slots is based on which slot the elysium is
207 * in -- in this setup elysium is in slot #2 (this PIRQA as first
208 * interrupt on slot */
209 {
210 { 0, 1, 2, 3 }, /* 16 - PMC */
211 { 0, 1, 2, 3 }, /* 17 P2P (Tsi320) */
212 { 0, 1, 2, 3 }, /* 18 - Slot 1 */
213 { 1, 2, 3, 0 }, /* 19 - Slot 2 */
214 { 2, 3, 0, 1 }, /* 20 - Slot 3 */
215 { 3, 0, 1, 2 }, /* 21 - Slot 4 */
216 };
217
218 const long min_idsel = 16, max_idsel = 21, irqs_per_slot = 4;
219 int i, j;
220
221 for (i = 0; i < 6; i++)
222 for (j = 0; j < 4; j++)
223 pci_irq_table[i][j] =
224 ((pci_irq_table[i][j] + 5 -
225 cds_pci_slot) & 0x3) + PIRQ0A;
226
227 return PCI_IRQ_TABLE_LOOKUP;
228 } else {
229 /* Handle PCI2 interrupts (if we have one) */
230 char pci_irq_table[][4] =
231 {
232 /*
233 * We only have one slot and one interrupt
234 * going to PIRQA - PIRQD */
235 { PIRQ1A, PIRQ1A, PIRQ1A, PIRQ1A }, /* 21 - slot 0 */
236 };
237
238 const long min_idsel = 21, max_idsel = 21, irqs_per_slot = 4;
239
240 return PCI_IRQ_TABLE_LOOKUP;
241 }
242 }
243
244 #define ARCADIA_HOST_BRIDGE_IDSEL 17
245 #define ARCADIA_2ND_BRIDGE_IDSEL 3
246
247 extern int mpc85xx_pci1_last_busno;
248
249 int
250 mpc85xx_exclude_device(u_char bus, u_char devfn)
251 {
252 if (bus == 0 && PCI_SLOT(devfn) == 0)
253 return PCIBIOS_DEVICE_NOT_FOUND;
254 #ifdef CONFIG_85xx_PCI2
255 if (mpc85xx_pci1_last_busno)
256 if (bus == (mpc85xx_pci1_last_busno + 1) && PCI_SLOT(devfn) == 0)
257 return PCIBIOS_DEVICE_NOT_FOUND;
258 #endif
259 /* We explicitly do not go past the Tundra 320 Bridge */
260 if ((bus == 1) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
261 return PCIBIOS_DEVICE_NOT_FOUND;
262 if ((bus == 0) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
263 return PCIBIOS_DEVICE_NOT_FOUND;
264 else
265 return PCIBIOS_SUCCESSFUL;
266 }
267
268 void __init
269 mpc85xx_cds_enable_via(struct pci_controller *hose)
270 {
271 u32 pci_class;
272 u16 vid, did;
273
274 early_read_config_dword(hose, 0, 0x88, PCI_CLASS_REVISION, &pci_class);
275 if ((pci_class >> 16) != PCI_CLASS_BRIDGE_PCI)
276 return;
277
278 /* Configure P2P so that we can reach bus 1 */
279 early_write_config_byte(hose, 0, 0x88, PCI_PRIMARY_BUS, 0);
280 early_write_config_byte(hose, 0, 0x88, PCI_SECONDARY_BUS, 1);
281 early_write_config_byte(hose, 0, 0x88, PCI_SUBORDINATE_BUS, 0xff);
282
283 early_read_config_word(hose, 1, 0x10, PCI_VENDOR_ID, &vid);
284 early_read_config_word(hose, 1, 0x10, PCI_DEVICE_ID, &did);
285
286 if ((vid != PCI_VENDOR_ID_VIA) ||
287 (did != PCI_DEVICE_ID_VIA_82C686))
288 return;
289
290 /* Enable USB and IDE functions */
291 early_write_config_byte(hose, 1, 0x10, 0x48, 0x08);
292 }
293
294 void __init
295 mpc85xx_cds_fixup_via(struct pci_controller *hose)
296 {
297 u32 pci_class;
298 u16 vid, did;
299
300 early_read_config_dword(hose, 0, 0x88, PCI_CLASS_REVISION, &pci_class);
301 if ((pci_class >> 16) != PCI_CLASS_BRIDGE_PCI)
302 return;
303
304 /*
305 * Force the backplane P2P bridge to have a window
306 * open from 0x00000000-0x00001fff in PCI I/O space.
307 * This allows legacy I/O (i8259, etc) on the VIA
308 * southbridge to be accessed.
309 */
310 early_write_config_byte(hose, 0, 0x88, PCI_IO_BASE, 0x00);
311 early_write_config_word(hose, 0, 0x88, PCI_IO_BASE_UPPER16, 0x0000);
312 early_write_config_byte(hose, 0, 0x88, PCI_IO_LIMIT, 0x10);
313 early_write_config_word(hose, 0, 0x88, PCI_IO_LIMIT_UPPER16, 0x0000);
314
315 early_read_config_word(hose, 1, 0x10, PCI_VENDOR_ID, &vid);
316 early_read_config_word(hose, 1, 0x10, PCI_DEVICE_ID, &did);
317 if ((vid != PCI_VENDOR_ID_VIA) ||
318 (did != PCI_DEVICE_ID_VIA_82C686))
319 return;
320
321 /*
322 * Since the P2P window was forced to cover the fixed
323 * legacy I/O addresses, it is necessary to manually
324 * place the base addresses for the IDE and USB functions
325 * within this window.
326 */
327 /* Function 1, IDE */
328 early_write_config_dword(hose, 1, 0x11, PCI_BASE_ADDRESS_0, 0x1ff8);
329 early_write_config_dword(hose, 1, 0x11, PCI_BASE_ADDRESS_1, 0x1ff4);
330 early_write_config_dword(hose, 1, 0x11, PCI_BASE_ADDRESS_2, 0x1fe8);
331 early_write_config_dword(hose, 1, 0x11, PCI_BASE_ADDRESS_3, 0x1fe4);
332 early_write_config_dword(hose, 1, 0x11, PCI_BASE_ADDRESS_4, 0x1fd0);
333
334 /* Function 2, USB ports 0-1 */
335 early_write_config_dword(hose, 1, 0x12, PCI_BASE_ADDRESS_4, 0x1fa0);
336
337 /* Function 3, USB ports 2-3 */
338 early_write_config_dword(hose, 1, 0x13, PCI_BASE_ADDRESS_4, 0x1f80);
339
340 /* Function 5, Power Management */
341 early_write_config_dword(hose, 1, 0x15, PCI_BASE_ADDRESS_0, 0x1e00);
342 early_write_config_dword(hose, 1, 0x15, PCI_BASE_ADDRESS_1, 0x1dfc);
343 early_write_config_dword(hose, 1, 0x15, PCI_BASE_ADDRESS_2, 0x1df8);
344
345 /* Function 6, AC97 Interface */
346 early_write_config_dword(hose, 1, 0x16, PCI_BASE_ADDRESS_0, 0x1c00);
347 }
348
349 void __init
350 mpc85xx_cds_pcibios_fixup(void)
351 {
352 struct pci_dev *dev;
353 u_char c;
354
355 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
356 PCI_DEVICE_ID_VIA_82C586_1, NULL))) {
357 /*
358 * U-Boot does not set the enable bits
359 * for the IDE device. Force them on here.
360 */
361 pci_read_config_byte(dev, 0x40, &c);
362 c |= 0x03; /* IDE: Chip Enable Bits */
363 pci_write_config_byte(dev, 0x40, c);
364
365 /*
366 * Since only primary interface works, force the
367 * IDE function to standard primary IDE interrupt
368 * w/ 8259 offset
369 */
370 dev->irq = 14;
371 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
372 pci_dev_put(dev);
373 }
374
375 /*
376 * Force legacy USB interrupt routing
377 */
378 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
379 PCI_DEVICE_ID_VIA_82C586_2, NULL))) {
380 dev->irq = 10;
381 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 10);
382 pci_dev_put(dev);
383 }
384
385 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
386 PCI_DEVICE_ID_VIA_82C586_2, dev))) {
387 dev->irq = 11;
388 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 11);
389 pci_dev_put(dev);
390 }
391 }
392 #endif /* CONFIG_PCI */
393
394 TODC_ALLOC();
395
396 /* ************************************************************************
397 *
398 * Setup the architecture
399 *
400 */
401 static void __init
402 mpc85xx_cds_setup_arch(void)
403 {
404 bd_t *binfo = (bd_t *) __res;
405 unsigned int freq;
406 struct gianfar_platform_data *pdata;
407 struct gianfar_mdio_data *mdata;
408
409 /* get the core frequency */
410 freq = binfo->bi_intfreq;
411
412 printk("mpc85xx_cds_setup_arch\n");
413
414 #ifdef CONFIG_CPM2
415 cpm2_reset();
416 #endif
417
418 cadmus = ioremap(CADMUS_BASE, CADMUS_SIZE);
419 cds_pci_slot = ((cadmus[CM_CSR] >> 6) & 0x3) + 1;
420 printk("CDS Version = %x in PCI slot %d\n", cadmus[CM_VER], cds_pci_slot);
421
422 /* Setup TODC access */
423 TODC_INIT(TODC_TYPE_DS1743,
424 0,
425 0,
426 ioremap(CDS_RTC_ADDR, CDS_RTC_SIZE),
427 8);
428
429 /* Set loops_per_jiffy to a half-way reasonable value,
430 for use until calibrate_delay gets called. */
431 loops_per_jiffy = freq / HZ;
432
433 #ifdef CONFIG_PCI
434 /* VIA IDE configuration */
435 ppc_md.pcibios_fixup = mpc85xx_cds_pcibios_fixup;
436
437 /* setup PCI host bridges */
438 mpc85xx_setup_hose();
439 #endif
440
441 #ifdef CONFIG_SERIAL_8250
442 mpc85xx_early_serial_map();
443 #endif
444
445 #ifdef CONFIG_SERIAL_TEXT_DEBUG
446 /* Invalidate the entry we stole earlier the serial ports
447 * should be properly mapped */
448 invalidate_tlbcam_entry(num_tlbcam_entries - 1);
449 #endif
450
451 /* setup the board related info for the MDIO bus */
452 mdata = (struct gianfar_mdio_data *) ppc_sys_get_pdata(MPC85xx_MDIO);
453
454 mdata->irq[0] = MPC85xx_IRQ_EXT5;
455 mdata->irq[1] = MPC85xx_IRQ_EXT5;
456 mdata->irq[2] = -1;
457 mdata->irq[3] = -1;
458 mdata->irq[31] = -1;
459
460 /* setup the board related information for the enet controllers */
461 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC1);
462 if (pdata) {
463 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
464 pdata->bus_id = 0;
465 pdata->phy_id = 0;
466 memcpy(pdata->mac_addr, binfo->bi_enetaddr, 6);
467 }
468
469 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC2);
470 if (pdata) {
471 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
472 pdata->bus_id = 0;
473 pdata->phy_id = 1;
474 memcpy(pdata->mac_addr, binfo->bi_enet1addr, 6);
475 }
476
477 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_eTSEC1);
478 if (pdata) {
479 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
480 pdata->bus_id = 0;
481 pdata->phy_id = 0;
482 memcpy(pdata->mac_addr, binfo->bi_enetaddr, 6);
483 }
484
485 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_eTSEC2);
486 if (pdata) {
487 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
488 pdata->bus_id = 0;
489 pdata->phy_id = 1;
490 memcpy(pdata->mac_addr, binfo->bi_enet1addr, 6);
491 }
492
493 ppc_sys_device_remove(MPC85xx_eTSEC3);
494 ppc_sys_device_remove(MPC85xx_eTSEC4);
495
496 #ifdef CONFIG_BLK_DEV_INITRD
497 if (initrd_start)
498 ROOT_DEV = Root_RAM0;
499 else
500 #endif
501 #ifdef CONFIG_ROOT_NFS
502 ROOT_DEV = Root_NFS;
503 #else
504 ROOT_DEV = Root_HDA1;
505 #endif
506 }
507
508 /* ************************************************************************ */
509 void __init
510 platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
511 unsigned long r6, unsigned long r7)
512 {
513 /* parse_bootinfo must always be called first */
514 parse_bootinfo(find_bootinfo());
515
516 /*
517 * If we were passed in a board information, copy it into the
518 * residual data area.
519 */
520 if (r3) {
521 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
522 sizeof (bd_t));
523
524 }
525 #ifdef CONFIG_SERIAL_TEXT_DEBUG
526 {
527 bd_t *binfo = (bd_t *) __res;
528 struct uart_port p;
529
530 /* Use the last TLB entry to map CCSRBAR to allow access to DUART regs */
531 settlbcam(num_tlbcam_entries - 1, binfo->bi_immr_base,
532 binfo->bi_immr_base, MPC85xx_CCSRBAR_SIZE, _PAGE_IO, 0);
533
534 memset(&p, 0, sizeof (p));
535 p.iotype = UPIO_MEM;
536 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART0_OFFSET;
537 p.uartclk = binfo->bi_busfreq;
538
539 gen550_init(0, &p);
540
541 memset(&p, 0, sizeof (p));
542 p.iotype = UPIO_MEM;
543 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART1_OFFSET;
544 p.uartclk = binfo->bi_busfreq;
545
546 gen550_init(1, &p);
547 }
548 #endif
549
550 #if defined(CONFIG_BLK_DEV_INITRD)
551 /*
552 * If the init RAM disk has been configured in, and there's a valid
553 * starting address for it, set it up.
554 */
555 if (r4) {
556 initrd_start = r4 + KERNELBASE;
557 initrd_end = r5 + KERNELBASE;
558 }
559 #endif /* CONFIG_BLK_DEV_INITRD */
560
561 /* Copy the kernel command line arguments to a safe place. */
562
563 if (r6) {
564 *(char *) (r7 + KERNELBASE) = 0;
565 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
566 }
567
568 identify_ppc_sys_by_id(mfspr(SPRN_SVR));
569
570 /* setup the PowerPC module struct */
571 ppc_md.setup_arch = mpc85xx_cds_setup_arch;
572 ppc_md.show_cpuinfo = mpc85xx_cds_show_cpuinfo;
573
574 ppc_md.init_IRQ = mpc85xx_cds_init_IRQ;
575 ppc_md.get_irq = openpic_get_irq;
576
577 ppc_md.restart = mpc85xx_restart;
578 ppc_md.power_off = mpc85xx_power_off;
579 ppc_md.halt = mpc85xx_halt;
580
581 ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
582
583 ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
584
585 ppc_md.time_init = todc_time_init;
586 ppc_md.set_rtc_time = todc_set_rtc_time;
587 ppc_md.get_rtc_time = todc_get_rtc_time;
588
589 ppc_md.nvram_read_val = todc_direct_read_val;
590 ppc_md.nvram_write_val = todc_direct_write_val;
591
592 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
593 ppc_md.progress = gen550_progress;
594 #endif /* CONFIG_SERIAL_8250 && CONFIG_SERIAL_TEXT_DEBUG */
595 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_KGDB)
596 ppc_md.early_serial_map = mpc85xx_early_serial_map;
597 #endif /* CONFIG_SERIAL_8250 && CONFIG_KGDB */
598
599 if (ppc_md.progress)
600 ppc_md.progress("mpc85xx_cds_init(): exit", 0);
601
602 return;
603 }
This page took 0.060761 seconds and 5 git commands to generate.