setup.c (c203e45f069af47ca7623e4dcd8c00bfba2722e4) setup.c (17ce452f7ea3df760b7f9f42453b6f6acd765217)
1/*
2 * Powermac setup and early boot code plus other random bits.
3 *
4 * PowerPC version
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 *
7 * Adapted for Power Macintosh by Paul Mackerras
8 * Copyright (C) 1996 Paul Mackerras (paulus@samba.org)

--- 83 unchanged lines hidden (view full) ---

92extern struct machdep_calls pmac_md;
93
94#define DEFAULT_ROOT_DEVICE Root_SDA1 /* sda1 - slightly silly choice */
95
96#ifdef CONFIG_PPC64
97int sccdbg;
98#endif
99
1/*
2 * Powermac setup and early boot code plus other random bits.
3 *
4 * PowerPC version
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 *
7 * Adapted for Power Macintosh by Paul Mackerras
8 * Copyright (C) 1996 Paul Mackerras (paulus@samba.org)

--- 83 unchanged lines hidden (view full) ---

92extern struct machdep_calls pmac_md;
93
94#define DEFAULT_ROOT_DEVICE Root_SDA1 /* sda1 - slightly silly choice */
95
96#ifdef CONFIG_PPC64
97int sccdbg;
98#endif
99
100extern void zs_kgdb_hook(int tty_num);
101
102sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN;
103EXPORT_SYMBOL(sys_ctrler);
104
105#ifdef CONFIG_PMAC_SMU
106unsigned long smu_cmdbuf_abs;
107EXPORT_SYMBOL(smu_cmdbuf_abs);
108#endif
109

--- 214 unchanged lines hidden (view full) ---

324 /* Lookup PCI hosts */
325 pmac_pci_init();
326
327#ifdef CONFIG_PPC32
328 ohare_init();
329 l2cr_init();
330#endif /* CONFIG_PPC32 */
331
100sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN;
101EXPORT_SYMBOL(sys_ctrler);
102
103#ifdef CONFIG_PMAC_SMU
104unsigned long smu_cmdbuf_abs;
105EXPORT_SYMBOL(smu_cmdbuf_abs);
106#endif
107

--- 214 unchanged lines hidden (view full) ---

322 /* Lookup PCI hosts */
323 pmac_pci_init();
324
325#ifdef CONFIG_PPC32
326 ohare_init();
327 l2cr_init();
328#endif /* CONFIG_PPC32 */
329
332#ifdef CONFIG_KGDB
333 zs_kgdb_hook(0);
334#endif
335
336 find_via_cuda();
337 find_via_pmu();
338 smu_init();
339
340#if defined(CONFIG_NVRAM) || defined(CONFIG_NVRAM_MODULE) || \
341 defined(CONFIG_PPC64)
342 pmac_nvram_init();
343#endif

--- 349 unchanged lines hidden ---
330 find_via_cuda();
331 find_via_pmu();
332 smu_init();
333
334#if defined(CONFIG_NVRAM) || defined(CONFIG_NVRAM_MODULE) || \
335 defined(CONFIG_PPC64)
336 pmac_nvram_init();
337#endif

--- 349 unchanged lines hidden ---