TOMOYO: Use callback for updating entries.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / powerpc / sysdev / mv64x60_dev.c
blob31acd3b1718b8f09be498fd2a15d82aa72464ca5
1 /*
2 * Platform device setup for Marvell mv64360/mv64460 host bridges (Discovery)
4 * Author: Dale Farnsworth <dale@farnsworth.org>
6 * 2007 (c) MontaVista, Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
12 #include <linux/stddef.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/console.h>
16 #include <linux/mv643xx.h>
17 #include <linux/platform_device.h>
18 #include <linux/of_platform.h>
19 #include <linux/dma-mapping.h>
21 #include <asm/prom.h>
24 * These functions provide the necessary setup for the mv64x60 drivers.
25 * These drivers are unusual in that they work on both the MIPS and PowerPC
26 * architectures. Because of that, the drivers do not support the normal
27 * PowerPC of_platform_bus_type. They support platform_bus_type instead.
30 static struct of_device_id __initdata of_mv64x60_devices[] = {
31 { .compatible = "marvell,mv64306-devctrl", },
36 * Create MPSC platform devices
38 static int __init mv64x60_mpsc_register_shared_pdev(struct device_node *np)
40 struct platform_device *pdev;
41 struct resource r[2];
42 struct mpsc_shared_pdata pdata;
43 const phandle *ph;
44 struct device_node *mpscrouting, *mpscintr;
45 int err;
47 ph = of_get_property(np, "mpscrouting", NULL);
48 mpscrouting = of_find_node_by_phandle(*ph);
49 if (!mpscrouting)
50 return -ENODEV;
52 err = of_address_to_resource(mpscrouting, 0, &r[0]);
53 of_node_put(mpscrouting);
54 if (err)
55 return err;
57 ph = of_get_property(np, "mpscintr", NULL);
58 mpscintr = of_find_node_by_phandle(*ph);
59 if (!mpscintr)
60 return -ENODEV;
62 err = of_address_to_resource(mpscintr, 0, &r[1]);
63 of_node_put(mpscintr);
64 if (err)
65 return err;
67 memset(&pdata, 0, sizeof(pdata));
69 pdev = platform_device_alloc(MPSC_SHARED_NAME, 0);
70 if (!pdev)
71 return -ENOMEM;
73 err = platform_device_add_resources(pdev, r, 2);
74 if (err)
75 goto error;
77 err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
78 if (err)
79 goto error;
81 err = platform_device_add(pdev);
82 if (err)
83 goto error;
85 return 0;
87 error:
88 platform_device_put(pdev);
89 return err;
93 static int __init mv64x60_mpsc_device_setup(struct device_node *np, int id)
95 struct resource r[5];
96 struct mpsc_pdata pdata;
97 struct platform_device *pdev;
98 const unsigned int *prop;
99 const phandle *ph;
100 struct device_node *sdma, *brg;
101 int err;
102 int port_number;
104 /* only register the shared platform device the first time through */
105 if (id == 0 && (err = mv64x60_mpsc_register_shared_pdev(np)))
106 return err;
108 memset(r, 0, sizeof(r));
110 err = of_address_to_resource(np, 0, &r[0]);
111 if (err)
112 return err;
114 of_irq_to_resource(np, 0, &r[4]);
116 ph = of_get_property(np, "sdma", NULL);
117 sdma = of_find_node_by_phandle(*ph);
118 if (!sdma)
119 return -ENODEV;
121 of_irq_to_resource(sdma, 0, &r[3]);
122 err = of_address_to_resource(sdma, 0, &r[1]);
123 of_node_put(sdma);
124 if (err)
125 return err;
127 ph = of_get_property(np, "brg", NULL);
128 brg = of_find_node_by_phandle(*ph);
129 if (!brg)
130 return -ENODEV;
132 err = of_address_to_resource(brg, 0, &r[2]);
133 of_node_put(brg);
134 if (err)
135 return err;
137 prop = of_get_property(np, "cell-index", NULL);
138 if (!prop)
139 return -ENODEV;
140 port_number = *(int *)prop;
142 memset(&pdata, 0, sizeof(pdata));
144 pdata.cache_mgmt = 1; /* All current revs need this set */
146 pdata.max_idle = 40; /* default */
147 prop = of_get_property(np, "max_idle", NULL);
148 if (prop)
149 pdata.max_idle = *prop;
151 prop = of_get_property(brg, "current-speed", NULL);
152 if (prop)
153 pdata.default_baud = *prop;
155 /* Default is 8 bits, no parity, no flow control */
156 pdata.default_bits = 8;
157 pdata.default_parity = 'n';
158 pdata.default_flow = 'n';
160 prop = of_get_property(np, "chr_1", NULL);
161 if (prop)
162 pdata.chr_1_val = *prop;
164 prop = of_get_property(np, "chr_2", NULL);
165 if (prop)
166 pdata.chr_2_val = *prop;
168 prop = of_get_property(np, "chr_10", NULL);
169 if (prop)
170 pdata.chr_10_val = *prop;
172 prop = of_get_property(np, "mpcr", NULL);
173 if (prop)
174 pdata.mpcr_val = *prop;
176 prop = of_get_property(brg, "bcr", NULL);
177 if (prop)
178 pdata.bcr_val = *prop;
180 pdata.brg_can_tune = 1; /* All current revs need this set */
182 prop = of_get_property(brg, "clock-src", NULL);
183 if (prop)
184 pdata.brg_clk_src = *prop;
186 prop = of_get_property(brg, "clock-frequency", NULL);
187 if (prop)
188 pdata.brg_clk_freq = *prop;
190 pdev = platform_device_alloc(MPSC_CTLR_NAME, port_number);
191 if (!pdev)
192 return -ENOMEM;
193 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
195 err = platform_device_add_resources(pdev, r, 5);
196 if (err)
197 goto error;
199 err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
200 if (err)
201 goto error;
203 err = platform_device_add(pdev);
204 if (err)
205 goto error;
207 return 0;
209 error:
210 platform_device_put(pdev);
211 return err;
215 * Create mv64x60_eth platform devices
217 static struct platform_device * __init mv64x60_eth_register_shared_pdev(
218 struct device_node *np, int id)
220 struct platform_device *pdev;
221 struct resource r[1];
222 int err;
224 err = of_address_to_resource(np, 0, &r[0]);
225 if (err)
226 return ERR_PTR(err);
228 pdev = platform_device_register_simple(MV643XX_ETH_SHARED_NAME, id,
229 r, 1);
230 return pdev;
233 static int __init mv64x60_eth_device_setup(struct device_node *np, int id,
234 struct platform_device *shared_pdev)
236 struct resource r[1];
237 struct mv643xx_eth_platform_data pdata;
238 struct platform_device *pdev;
239 struct device_node *phy;
240 const u8 *mac_addr;
241 const int *prop;
242 const phandle *ph;
243 int err;
245 memset(r, 0, sizeof(r));
246 of_irq_to_resource(np, 0, &r[0]);
248 memset(&pdata, 0, sizeof(pdata));
250 pdata.shared = shared_pdev;
252 prop = of_get_property(np, "reg", NULL);
253 if (!prop)
254 return -ENODEV;
255 pdata.port_number = *prop;
257 mac_addr = of_get_mac_address(np);
258 if (mac_addr)
259 memcpy(pdata.mac_addr, mac_addr, 6);
261 prop = of_get_property(np, "speed", NULL);
262 if (prop)
263 pdata.speed = *prop;
265 prop = of_get_property(np, "tx_queue_size", NULL);
266 if (prop)
267 pdata.tx_queue_size = *prop;
269 prop = of_get_property(np, "rx_queue_size", NULL);
270 if (prop)
271 pdata.rx_queue_size = *prop;
273 prop = of_get_property(np, "tx_sram_addr", NULL);
274 if (prop)
275 pdata.tx_sram_addr = *prop;
277 prop = of_get_property(np, "tx_sram_size", NULL);
278 if (prop)
279 pdata.tx_sram_size = *prop;
281 prop = of_get_property(np, "rx_sram_addr", NULL);
282 if (prop)
283 pdata.rx_sram_addr = *prop;
285 prop = of_get_property(np, "rx_sram_size", NULL);
286 if (prop)
287 pdata.rx_sram_size = *prop;
289 ph = of_get_property(np, "phy", NULL);
290 if (!ph)
291 return -ENODEV;
293 phy = of_find_node_by_phandle(*ph);
294 if (phy == NULL)
295 return -ENODEV;
297 prop = of_get_property(phy, "reg", NULL);
298 if (prop)
299 pdata.phy_addr = MV643XX_ETH_PHY_ADDR(*prop);
301 of_node_put(phy);
303 pdev = platform_device_alloc(MV643XX_ETH_NAME, id);
304 if (!pdev)
305 return -ENOMEM;
307 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
308 err = platform_device_add_resources(pdev, r, 1);
309 if (err)
310 goto error;
312 err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
313 if (err)
314 goto error;
316 err = platform_device_add(pdev);
317 if (err)
318 goto error;
320 return 0;
322 error:
323 platform_device_put(pdev);
324 return err;
328 * Create mv64x60_i2c platform devices
330 static int __init mv64x60_i2c_device_setup(struct device_node *np, int id)
332 struct resource r[2];
333 struct platform_device *pdev;
334 struct mv64xxx_i2c_pdata pdata;
335 const unsigned int *prop;
336 int err;
338 memset(r, 0, sizeof(r));
340 err = of_address_to_resource(np, 0, &r[0]);
341 if (err)
342 return err;
344 of_irq_to_resource(np, 0, &r[1]);
346 memset(&pdata, 0, sizeof(pdata));
348 pdata.freq_m = 8; /* default */
349 prop = of_get_property(np, "freq_m", NULL);
350 if (prop)
351 pdata.freq_m = *prop;
353 pdata.freq_m = 3; /* default */
354 prop = of_get_property(np, "freq_n", NULL);
355 if (prop)
356 pdata.freq_n = *prop;
358 pdata.timeout = 1000; /* default: 1 second */
360 pdev = platform_device_alloc(MV64XXX_I2C_CTLR_NAME, id);
361 if (!pdev)
362 return -ENOMEM;
364 err = platform_device_add_resources(pdev, r, 2);
365 if (err)
366 goto error;
368 err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
369 if (err)
370 goto error;
372 err = platform_device_add(pdev);
373 if (err)
374 goto error;
376 return 0;
378 error:
379 platform_device_put(pdev);
380 return err;
384 * Create mv64x60_wdt platform devices
386 static int __init mv64x60_wdt_device_setup(struct device_node *np, int id)
388 struct resource r;
389 struct platform_device *pdev;
390 struct mv64x60_wdt_pdata pdata;
391 const unsigned int *prop;
392 int err;
394 err = of_address_to_resource(np, 0, &r);
395 if (err)
396 return err;
398 memset(&pdata, 0, sizeof(pdata));
400 pdata.timeout = 10; /* Default: 10 seconds */
402 np = of_get_parent(np);
403 if (!np)
404 return -ENODEV;
406 prop = of_get_property(np, "clock-frequency", NULL);
407 of_node_put(np);
408 if (!prop)
409 return -ENODEV;
410 pdata.bus_clk = *prop / 1000000; /* wdt driver wants freq in MHz */
412 pdev = platform_device_alloc(MV64x60_WDT_NAME, id);
413 if (!pdev)
414 return -ENOMEM;
416 err = platform_device_add_resources(pdev, &r, 1);
417 if (err)
418 goto error;
420 err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
421 if (err)
422 goto error;
424 err = platform_device_add(pdev);
425 if (err)
426 goto error;
428 return 0;
430 error:
431 platform_device_put(pdev);
432 return err;
435 static int __init mv64x60_device_setup(void)
437 struct device_node *np, *np2;
438 struct platform_device *pdev;
439 int id, id2;
440 int err;
442 id = 0;
443 for_each_compatible_node(np, "serial", "marvell,mv64360-mpsc") {
444 err = mv64x60_mpsc_device_setup(np, id++);
445 if (err)
446 printk(KERN_ERR "Failed to initialize MV64x60 "
447 "serial device %s: error %d.\n",
448 np->full_name, err);
451 id = 0;
452 id2 = 0;
453 for_each_compatible_node(np, NULL, "marvell,mv64360-eth-group") {
454 pdev = mv64x60_eth_register_shared_pdev(np, id++);
455 if (IS_ERR(pdev)) {
456 err = PTR_ERR(pdev);
457 printk(KERN_ERR "Failed to initialize MV64x60 "
458 "network block %s: error %d.\n",
459 np->full_name, err);
460 continue;
462 for_each_child_of_node(np, np2) {
463 if (!of_device_is_compatible(np2,
464 "marvell,mv64360-eth"))
465 continue;
466 err = mv64x60_eth_device_setup(np2, id2++, pdev);
467 if (err)
468 printk(KERN_ERR "Failed to initialize "
469 "MV64x60 network device %s: "
470 "error %d.\n",
471 np2->full_name, err);
475 id = 0;
476 for_each_compatible_node(np, "i2c", "marvell,mv64360-i2c") {
477 err = mv64x60_i2c_device_setup(np, id++);
478 if (err)
479 printk(KERN_ERR "Failed to initialize MV64x60 I2C "
480 "bus %s: error %d.\n",
481 np->full_name, err);
484 /* support up to one watchdog timer */
485 np = of_find_compatible_node(np, NULL, "marvell,mv64360-wdt");
486 if (np) {
487 if ((err = mv64x60_wdt_device_setup(np, id)))
488 printk(KERN_ERR "Failed to initialize MV64x60 "
489 "Watchdog %s: error %d.\n",
490 np->full_name, err);
491 of_node_put(np);
494 /* Now add every node that is on the device bus */
495 for_each_compatible_node(np, NULL, "marvell,mv64360")
496 of_platform_bus_probe(np, of_mv64x60_devices, NULL);
498 return 0;
500 arch_initcall(mv64x60_device_setup);
502 static int __init mv64x60_add_mpsc_console(void)
504 struct device_node *np = NULL;
505 const char *prop;
507 prop = of_get_property(of_chosen, "linux,stdout-path", NULL);
508 if (prop == NULL)
509 goto not_mpsc;
511 np = of_find_node_by_path(prop);
512 if (!np)
513 goto not_mpsc;
515 if (!of_device_is_compatible(np, "marvell,mv64360-mpsc"))
516 goto not_mpsc;
518 prop = of_get_property(np, "cell-index", NULL);
519 if (!prop)
520 goto not_mpsc;
522 add_preferred_console("ttyMM", *(int *)prop, NULL);
524 not_mpsc:
525 return 0;
527 console_initcall(mv64x60_add_mpsc_console);