Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/plat-omap/devices.c |
| 3 | * |
| 4 | * Common platform device setup/initialization for OMAP1 and OMAP2 |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | */ |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 11 | #include <linux/gpio.h> |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/platform_device.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 16 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Felipe Contreras | 9017388 | 2010-10-04 19:09:14 +0300 | [diff] [blame] | 18 | #include <linux/memblock.h> |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 19 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 20 | #include <mach/hardware.h> |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 21 | #include <asm/mach-types.h> |
| 22 | #include <asm/mach/map.h> |
Russell King | 716a3dc | 2012-01-13 15:00:51 +0000 | [diff] [blame] | 23 | #include <asm/memblock.h> |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 24 | |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 25 | #include <plat/tc.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 26 | #include <plat/board.h> |
| 27 | #include <plat/mmc.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 28 | #include <plat/menelaus.h> |
Jorge Eduardo Candelaria | d6a2d9b | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 29 | #include <plat/omap44xx.h> |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 30 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 31 | /*-------------------------------------------------------------------------*/ |
| 32 | |
Ladislav Michl | 3bfe897 | 2009-12-11 16:16:36 -0800 | [diff] [blame] | 33 | #if defined(CONFIG_HW_RANDOM_OMAP) || defined(CONFIG_HW_RANDOM_OMAP_MODULE) |
| 34 | |
Tony Lindgren | 088ef95 | 2010-02-12 12:26:47 -0800 | [diff] [blame] | 35 | #ifdef CONFIG_ARCH_OMAP2 |
Ladislav Michl | 3bfe897 | 2009-12-11 16:16:36 -0800 | [diff] [blame] | 36 | #define OMAP_RNG_BASE 0x480A0000 |
| 37 | #else |
| 38 | #define OMAP_RNG_BASE 0xfffe5000 |
| 39 | #endif |
| 40 | |
| 41 | static struct resource rng_resources[] = { |
| 42 | { |
| 43 | .start = OMAP_RNG_BASE, |
| 44 | .end = OMAP_RNG_BASE + 0x4f, |
| 45 | .flags = IORESOURCE_MEM, |
| 46 | }, |
| 47 | }; |
| 48 | |
| 49 | static struct platform_device omap_rng_device = { |
| 50 | .name = "omap_rng", |
| 51 | .id = -1, |
| 52 | .num_resources = ARRAY_SIZE(rng_resources), |
| 53 | .resource = rng_resources, |
| 54 | }; |
| 55 | |
| 56 | static void omap_init_rng(void) |
| 57 | { |
| 58 | (void) platform_device_register(&omap_rng_device); |
| 59 | } |
| 60 | #else |
| 61 | static inline void omap_init_rng(void) {} |
| 62 | #endif |
| 63 | |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 64 | /* |
| 65 | * This gets called after board-specific INIT_MACHINE, and initializes most |
| 66 | * on-chip peripherals accessible on this board (except for few like USB): |
| 67 | * |
| 68 | * (a) Does any "standard config" pin muxing needed. Board-specific |
| 69 | * code will have muxed GPIO pins and done "nonstandard" setup; |
| 70 | * that code could live in the boot loader. |
| 71 | * (b) Populating board-specific platform_data with the data drivers |
| 72 | * rely on to handle wiring variations. |
| 73 | * (c) Creating platform devices as meaningful on this board and |
| 74 | * with this kernel configuration. |
| 75 | * |
| 76 | * Claiming GPIOs, and setting their direction and initial values, is the |
| 77 | * responsibility of the device drivers. So is responding to probe(). |
| 78 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 79 | * Board-specific knowledge like creating devices or pin setup is to be |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 80 | * kept out of drivers as much as possible. In particular, pin setup |
| 81 | * may be handled by the boot loader, and drivers should expect it will |
| 82 | * normally have been done by the time they're probed. |
| 83 | */ |
| 84 | static int __init omap_init_devices(void) |
| 85 | { |
| 86 | /* please keep these calls, and their implementations above, |
| 87 | * in alphabetical order so they're easier to sort through. |
| 88 | */ |
Ladislav Michl | 3bfe897 | 2009-12-11 16:16:36 -0800 | [diff] [blame] | 89 | omap_init_rng(); |
Tony Lindgren | 1a8bfa1 | 2005-11-10 14:26:50 +0000 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | arch_initcall(omap_init_devices); |