This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / ppc / platforms / 85xx / sbc8560.c
1 /*
2  * arch/ppc/platforms/85xx/sbc8560.c
3  * 
4  * Wind River SBC8560 board specific routines
5  * 
6  * Maintainer: Kumar Gala <kumar.gala@freescale.com>
7  *
8  * Copyright 2004 Freescale Semiconductor Inc.
9  * 
10  * This program is free software; you can redistribute  it and/or modify it
11  * under  the terms of  the GNU General  Public License as published by the
12  * Free Software Foundation;  either version 2 of the  License, or (at your
13  * option) any later version.
14  */
15
16 #include <linux/config.h>
17 #include <linux/stddef.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/reboot.h>
22 #include <linux/pci.h>
23 #include <linux/kdev_t.h>
24 #include <linux/major.h>
25 #include <linux/console.h>
26 #include <linux/delay.h>
27 #include <linux/irq.h>
28 #include <linux/seq_file.h>
29 #include <linux/root_dev.h>
30 #include <linux/serial.h>
31 #include <linux/tty.h>  /* for linux/serial_core.h */
32 #include <linux/serial_core.h>
33 #include <linux/module.h>
34
35 #include <asm/system.h>
36 #include <asm/pgtable.h>
37 #include <asm/page.h>
38 #include <asm/atomic.h>
39 #include <asm/time.h>
40 #include <asm/io.h>
41 #include <asm/machdep.h>
42 #include <asm/prom.h>
43 #include <asm/open_pic.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/kgdb.h>
50 #include <asm/ocp.h>
51 #include <mm/mmu_decl.h>
52
53 #include <syslib/ppc85xx_common.h>
54 #include <syslib/ppc85xx_setup.h>
55
56 struct ocp_gfar_data mpc85xx_tsec1_def = {
57         .interruptTransmit = MPC85xx_IRQ_TSEC1_TX,
58         .interruptError = MPC85xx_IRQ_TSEC1_ERROR,
59         .interruptReceive = MPC85xx_IRQ_TSEC1_RX,
60         .interruptPHY = MPC85xx_IRQ_EXT6,
61         .flags = (GFAR_HAS_GIGABIT | GFAR_HAS_MULTI_INTR | GFAR_HAS_PHY_INTR),
62         .phyid = 25,
63         .phyregidx = 0,
64 };
65
66 struct ocp_gfar_data mpc85xx_tsec2_def = {
67         .interruptTransmit = MPC85xx_IRQ_TSEC2_TX,
68         .interruptError = MPC85xx_IRQ_TSEC2_ERROR,
69         .interruptReceive = MPC85xx_IRQ_TSEC2_RX,
70         .interruptPHY = MPC85xx_IRQ_EXT7,
71         .flags = (GFAR_HAS_GIGABIT | GFAR_HAS_MULTI_INTR | GFAR_HAS_PHY_INTR),
72         .phyid = 26,
73         .phyregidx = 0,
74 };
75
76 struct ocp_fs_i2c_data mpc85xx_i2c1_def = {
77         .flags = FS_I2C_SEPARATE_DFSRR,
78 };
79
80
81 #ifdef CONFIG_SERIAL_8250
82 static void __init
83 sbc8560_early_serial_map(void)
84 {
85         struct uart_port uart_req;
86  
87         /* Setup serial port access */
88         memset(&uart_req, 0, sizeof (uart_req));
89         uart_req.irq = MPC85xx_IRQ_EXT9;
90         uart_req.flags = STD_COM_FLAGS;
91         uart_req.uartclk = BASE_BAUD * 16;
92         uart_req.iotype = SERIAL_IO_MEM;
93         uart_req.mapbase = UARTA_ADDR;
94         uart_req.membase = ioremap(uart_req.mapbase, MPC85xx_UART0_SIZE);
95
96 #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB)
97         gen550_init(0, &uart_req);
98 #endif
99  
100         if (early_serial_setup(&uart_req) != 0)
101                 printk("Early serial init of port 0 failed\n");
102  
103         /* Assume early_serial_setup() doesn't modify uart_req */
104         uart_req.line = 1;
105         uart_req.mapbase = UARTB_ADDR;
106         uart_req.membase = ioremap(uart_req.mapbase, MPC85xx_UART1_SIZE);
107         uart_req.irq = MPC85xx_IRQ_EXT10;
108  
109 #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB)
110         gen550_init(1, &uart_req);
111 #endif
112  
113         if (early_serial_setup(&uart_req) != 0)
114                 printk("Early serial init of port 1 failed\n");
115 }
116 #endif
117
118 /* ************************************************************************
119  *
120  * Setup the architecture
121  *
122  */
123 static void __init
124 sbc8560_setup_arch(void)
125 {
126         struct ocp_def *def;
127         struct ocp_gfar_data *einfo;
128         bd_t *binfo = (bd_t *) __res;
129         unsigned int freq;
130
131         /* get the core frequency */
132         freq = binfo->bi_intfreq;
133
134         if (ppc_md.progress)
135                 ppc_md.progress("sbc8560_setup_arch()", 0);
136
137         /* Set loops_per_jiffy to a half-way reasonable value,
138            for use until calibrate_delay gets called. */
139         loops_per_jiffy = freq / HZ;
140
141 #ifdef CONFIG_PCI
142         /* setup PCI host bridges */
143         mpc85xx_setup_hose();
144 #endif
145 #ifdef CONFIG_DUMMY_CONSOLE
146         conswitchp = &dummy_con;
147 #endif
148 #ifdef CONFIG_SERIAL_8250
149         sbc8560_early_serial_map();
150 #endif
151 #ifdef CONFIG_SERIAL_TEXT_DEBUG
152         /* Invalidate the entry we stole earlier the serial ports
153          * should be properly mapped */ 
154         invalidate_tlbcam_entry(NUM_TLBCAMS - 1);
155 #endif
156
157         /* Set up MAC addresses for the Ethernet devices */
158         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 0);
159         if (def) {
160                 einfo = (struct ocp_gfar_data *) def->additions;
161                 memcpy(einfo->mac_addr, binfo->bi_enetaddr, 6);
162         }
163
164         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 1);
165         if (def) {
166                 einfo = (struct ocp_gfar_data *) def->additions;
167                 memcpy(einfo->mac_addr, binfo->bi_enet1addr, 6);
168         }
169
170 #ifdef CONFIG_BLK_DEV_INITRD
171         if (initrd_start)
172                 ROOT_DEV = Root_RAM0;
173         else
174 #endif
175 #ifdef  CONFIG_ROOT_NFS
176                 ROOT_DEV = Root_NFS;
177 #else
178                 ROOT_DEV = Root_HDA1;
179 #endif
180
181         ocp_for_each_device(mpc85xx_update_paddr_ocp, &(binfo->bi_immr_base));
182 }
183
184 /* ************************************************************************ */
185 void __init
186 platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
187               unsigned long r6, unsigned long r7)
188 {
189         /* parse_bootinfo must always be called first */
190         parse_bootinfo(find_bootinfo());
191
192         /*
193          * If we were passed in a board information, copy it into the
194          * residual data area.
195          */
196         if (r3) {
197                 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
198                        sizeof (bd_t));
199         }
200
201 #ifdef CONFIG_SERIAL_TEXT_DEBUG
202         /* Use the last TLB entry to map CCSRBAR to allow access to DUART regs */
203         settlbcam(NUM_TLBCAMS - 1, UARTA_ADDR,
204                   UARTA_ADDR, 0x1000, _PAGE_IO, 0);
205 #endif
206
207 #if defined(CONFIG_BLK_DEV_INITRD)
208         /*
209          * If the init RAM disk has been configured in, and there's a valid
210          * starting address for it, set it up.
211          */
212         if (r4) {
213                 initrd_start = r4 + KERNELBASE;
214                 initrd_end = r5 + KERNELBASE;
215         }
216 #endif                          /* CONFIG_BLK_DEV_INITRD */
217
218         /* Copy the kernel command line arguments to a safe place. */
219
220         if (r6) {
221                 *(char *) (r7 + KERNELBASE) = 0;
222                 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
223         }
224
225         /* setup the PowerPC module struct */
226         ppc_md.setup_arch = sbc8560_setup_arch;
227         ppc_md.show_cpuinfo = sbc8560_show_cpuinfo;
228
229         ppc_md.init_IRQ = sbc8560_init_IRQ;
230         ppc_md.get_irq = openpic_get_irq;
231
232         ppc_md.restart = mpc85xx_restart;
233         ppc_md.power_off = mpc85xx_power_off;
234         ppc_md.halt = mpc85xx_halt;
235
236         ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
237
238         ppc_md.time_init = NULL;
239         ppc_md.set_rtc_time = NULL;
240         ppc_md.get_rtc_time = NULL;
241         ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
242
243 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
244         ppc_md.progress = gen550_progress;
245 #endif  /* CONFIG_SERIAL_8250 && CONFIG_SERIAL_TEXT_DEBUG */
246
247         if (ppc_md.progress)
248                 ppc_md.progress("sbc8560_init(): exit", 0);
249 }