2 * arch/arm/mach-orion/kurobox_pro-setup.c
4 * Maintainer: Ronen Shitrit <rshitrit@marvell.com>
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/pci.h>
15 #include <linux/irq.h>
16 #include <linux/mtd/physmap.h>
17 #include <linux/mtd/nand.h>
18 #include <linux/mv643xx_eth.h>
19 #include <linux/i2c.h>
20 #include <asm/mach-types.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach/pci.h>
24 #include <asm/arch/orion.h>
25 #include <asm/arch/platform.h>
28 /*****************************************************************************
30 ****************************************************************************/
33 * 256K NOR flash Device bus boot chip select
36 #define KUROBOX_PRO_NOR_BOOT_BASE 0xf4000000
37 #define KUROBOX_PRO_NOR_BOOT_SIZE SZ_256K
40 * 256M NAND flash on Device bus chip select 1
43 #define KUROBOX_PRO_NAND_BASE 0xfc000000
44 #define KUROBOX_PRO_NAND_SIZE SZ_2M
46 /*****************************************************************************
47 * 256MB NAND Flash on Device bus CS0
48 ****************************************************************************/
50 static struct mtd_partition kurobox_pro_nand_parts
[] = {
63 .offset
= SZ_4M
+ SZ_64M
,
64 .size
= SZ_256M
- (SZ_4M
+ SZ_64M
),
68 static struct resource kurobox_pro_nand_resource
= {
69 .flags
= IORESOURCE_MEM
,
70 .start
= KUROBOX_PRO_NAND_BASE
,
71 .end
= KUROBOX_PRO_NAND_BASE
+ KUROBOX_PRO_NAND_SIZE
- 1,
74 static struct orion_nand_data kurobox_pro_nand_data
= {
75 .parts
= kurobox_pro_nand_parts
,
76 .nr_parts
= ARRAY_SIZE(kurobox_pro_nand_parts
),
82 static struct platform_device kurobox_pro_nand_flash
= {
86 .platform_data
= &kurobox_pro_nand_data
,
88 .resource
= &kurobox_pro_nand_resource
,
92 /*****************************************************************************
93 * 256KB NOR Flash on BOOT Device
94 ****************************************************************************/
96 static struct physmap_flash_data kurobox_pro_nor_flash_data
= {
100 static struct resource kurobox_pro_nor_flash_resource
= {
101 .flags
= IORESOURCE_MEM
,
102 .start
= KUROBOX_PRO_NOR_BOOT_BASE
,
103 .end
= KUROBOX_PRO_NOR_BOOT_BASE
+ KUROBOX_PRO_NOR_BOOT_SIZE
- 1,
106 static struct platform_device kurobox_pro_nor_flash
= {
107 .name
= "physmap-flash",
110 .platform_data
= &kurobox_pro_nor_flash_data
,
113 .resource
= &kurobox_pro_nor_flash_resource
,
116 /*****************************************************************************
118 ****************************************************************************/
120 static int __init
kurobox_pro_pci_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
123 * PCI isn't used on the Kuro
125 if (dev
->bus
->number
== orion_pcie_local_bus_nr())
126 return IRQ_ORION_PCIE0_INT
;
128 printk(KERN_ERR
"kurobox_pro_pci_map_irq failed, unknown bus\n");
133 static struct hw_pci kurobox_pro_pci __initdata
= {
135 .swizzle
= pci_std_swizzle
,
136 .setup
= orion_pci_sys_setup
,
137 .scan
= orion_pci_sys_scan_bus
,
138 .map_irq
= kurobox_pro_pci_map_irq
,
141 static int __init
kurobox_pro_pci_init(void)
143 if (machine_is_kurobox_pro())
144 pci_common_init(&kurobox_pro_pci
);
149 subsys_initcall(kurobox_pro_pci_init
);
151 /*****************************************************************************
153 ****************************************************************************/
155 static struct mv643xx_eth_platform_data kurobox_pro_eth_data
= {
160 /*****************************************************************************
161 * RTC 5C372a on I2C bus
162 ****************************************************************************/
163 static struct i2c_board_info __initdata kurobox_pro_i2c_rtc
= {
164 .driver_name
= "rtc-rs5c372",
169 /*****************************************************************************
171 ****************************************************************************/
173 static struct platform_device
*kurobox_pro_devices
[] __initdata
= {
174 &kurobox_pro_nor_flash
,
175 &kurobox_pro_nand_flash
,
178 static void __init
kurobox_pro_init(void)
181 * Setup basic Orion functions. Need to be called early.
186 * Setup the CPU address decode windows for our devices
188 orion_setup_cpu_win(ORION_DEV_BOOT
, KUROBOX_PRO_NOR_BOOT_BASE
,
189 KUROBOX_PRO_NOR_BOOT_SIZE
, -1);
190 orion_setup_cpu_win(ORION_DEV0
, KUROBOX_PRO_NAND_BASE
,
191 KUROBOX_PRO_NAND_SIZE
, -1);
193 * Open a special address decode windows for the PCIE WA.
195 orion_write(ORION_REGS_BASE
| 0x20074, ORION_PCIE_WA_BASE
);
196 orion_write(ORION_REGS_BASE
| 0x20070, (0x7941 |
197 (((ORION_PCIE_WA_SIZE
>> 16) - 1)) << 16));
200 * Setup Multiplexing Pins --
205 * MPP[6] Nand Flash REn
206 * MPP[7] Nand Flash WEn
208 * MPP[12] SATA 0 presence Indication
209 * MPP[13] SATA 1 presence Indication
210 * MPP[14] SATA 0 active Indication
211 * MPP[15] SATA 1 active indication
212 * MPP[16-19] Not used
214 orion_write(MPP_0_7_CTRL
, 0x44220003);
215 orion_write(MPP_8_15_CTRL
, 0x55550000);
216 orion_write(MPP_16_19_CTRL
, 0x0);
218 orion_gpio_set_valid_pins(0x0000000c);
220 platform_add_devices(kurobox_pro_devices
, ARRAY_SIZE(kurobox_pro_devices
));
221 i2c_register_board_info(0, &kurobox_pro_i2c_rtc
, 1);
222 orion_eth_init(&kurobox_pro_eth_data
);
225 MACHINE_START(KUROBOX_PRO
, "Buffalo/Revogear Kurobox Pro")
226 /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */
227 .phys_io
= ORION_REGS_BASE
,
228 .io_pg_offst
= ((ORION_REGS_BASE
) >> 18) & 0xFFFC,
229 .boot_params
= 0x00000100,
230 .init_machine
= kurobox_pro_init
,
231 .map_io
= orion_map_io
,
232 .init_irq
= orion_init_irq
,
233 .timer
= &orion_timer
,