2 * arch/arm/mach-orion5x/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/delay.h>
17 #include <linux/mtd/physmap.h>
18 #include <linux/mtd/nand.h>
19 #include <linux/mv643xx_eth.h>
20 #include <linux/i2c.h>
21 #include <linux/serial_reg.h>
22 #include <linux/ata_platform.h>
23 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/pci.h>
27 #include <asm/arch/orion5x.h>
28 #include <asm/plat-orion/orion_nand.h>
32 /*****************************************************************************
34 ****************************************************************************/
37 * 256K NOR flash Device bus boot chip select
40 #define KUROBOX_PRO_NOR_BOOT_BASE 0xf4000000
41 #define KUROBOX_PRO_NOR_BOOT_SIZE SZ_256K
44 * 256M NAND flash on Device bus chip select 1
47 #define KUROBOX_PRO_NAND_BASE 0xfc000000
48 #define KUROBOX_PRO_NAND_SIZE SZ_2M
50 /*****************************************************************************
51 * 256MB NAND Flash on Device bus CS0
52 ****************************************************************************/
54 static struct mtd_partition kurobox_pro_nand_parts
[] = {
65 .offset
= SZ_4M
+ SZ_64M
,
66 .size
= SZ_256M
- (SZ_4M
+ SZ_64M
),
70 static struct resource kurobox_pro_nand_resource
= {
71 .flags
= IORESOURCE_MEM
,
72 .start
= KUROBOX_PRO_NAND_BASE
,
73 .end
= KUROBOX_PRO_NAND_BASE
+ KUROBOX_PRO_NAND_SIZE
- 1,
76 static struct orion_nand_data kurobox_pro_nand_data
= {
77 .parts
= kurobox_pro_nand_parts
,
78 .nr_parts
= ARRAY_SIZE(kurobox_pro_nand_parts
),
84 static struct platform_device kurobox_pro_nand_flash
= {
88 .platform_data
= &kurobox_pro_nand_data
,
90 .resource
= &kurobox_pro_nand_resource
,
94 /*****************************************************************************
95 * 256KB NOR Flash on BOOT Device
96 ****************************************************************************/
98 static struct physmap_flash_data kurobox_pro_nor_flash_data
= {
102 static struct resource kurobox_pro_nor_flash_resource
= {
103 .flags
= IORESOURCE_MEM
,
104 .start
= KUROBOX_PRO_NOR_BOOT_BASE
,
105 .end
= KUROBOX_PRO_NOR_BOOT_BASE
+ KUROBOX_PRO_NOR_BOOT_SIZE
- 1,
108 static struct platform_device kurobox_pro_nor_flash
= {
109 .name
= "physmap-flash",
112 .platform_data
= &kurobox_pro_nor_flash_data
,
115 .resource
= &kurobox_pro_nor_flash_resource
,
118 /*****************************************************************************
120 ****************************************************************************/
122 static int __init
kurobox_pro_pci_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
127 * Check for devices with hard-wired IRQs.
129 irq
= orion5x_pci_map_irq(dev
, slot
, pin
);
134 * PCI isn't used on the Kuro
139 static struct hw_pci kurobox_pro_pci __initdata
= {
141 .swizzle
= pci_std_swizzle
,
142 .setup
= orion5x_pci_sys_setup
,
143 .scan
= orion5x_pci_sys_scan_bus
,
144 .map_irq
= kurobox_pro_pci_map_irq
,
147 static int __init
kurobox_pro_pci_init(void)
149 if (machine_is_kurobox_pro())
150 pci_common_init(&kurobox_pro_pci
);
155 subsys_initcall(kurobox_pro_pci_init
);
157 /*****************************************************************************
159 ****************************************************************************/
161 static struct mv643xx_eth_platform_data kurobox_pro_eth_data
= {
165 /*****************************************************************************
166 * RTC 5C372a on I2C bus
167 ****************************************************************************/
168 static struct i2c_board_info __initdata kurobox_pro_i2c_rtc
= {
169 I2C_BOARD_INFO("rs5c372a", 0x32),
172 /*****************************************************************************
174 ****************************************************************************/
175 static struct mv_sata_platform_data kurobox_pro_sata_data
= {
179 /*****************************************************************************
180 * Kurobox Pro specific power off method via UART1-attached microcontroller
181 ****************************************************************************/
183 #define UART1_REG(x) (UART1_VIRT_BASE + ((UART_##x) << 2))
185 static int kurobox_pro_miconread(unsigned char *buf
, int count
)
190 for (i
= 0; i
< count
; i
++) {
193 while (!(readl(UART1_REG(LSR
)) & UART_LSR_DR
)) {
201 buf
[i
] = readl(UART1_REG(RX
));
204 /* return read bytes */
208 static int kurobox_pro_miconwrite(const unsigned char *buf
, int count
)
213 while (!(readl(UART1_REG(LSR
)) & UART_LSR_THRE
))
215 writel(buf
[i
++], UART1_REG(TX
));
221 static int kurobox_pro_miconsend(const unsigned char *data
, int count
)
224 unsigned char checksum
= 0;
225 unsigned char recv_buf
[40];
226 unsigned char send_buf
[40];
227 unsigned char correct_ack
[3];
230 /* Generate checksum */
231 for (i
= 0; i
< count
; i
++)
236 kurobox_pro_miconwrite(data
, count
);
239 kurobox_pro_miconwrite(&checksum
, 1);
241 if (kurobox_pro_miconread(recv_buf
, sizeof(recv_buf
)) <= 3) {
242 printk(KERN_ERR
">%s: receive failed.\n", __func__
);
244 /* send preamble to clear the receive buffer */
245 memset(&send_buf
, 0xff, sizeof(send_buf
));
246 kurobox_pro_miconwrite(send_buf
, sizeof(send_buf
));
248 /* make dummy reads */
250 kurobox_pro_miconread(recv_buf
, sizeof(recv_buf
));
252 /* Generate expected ack */
253 correct_ack
[0] = 0x01;
254 correct_ack
[1] = data
[1];
255 correct_ack
[2] = 0x00;
258 if ((recv_buf
[0] + recv_buf
[1] + recv_buf
[2] +
259 recv_buf
[3]) & 0xFF) {
260 printk(KERN_ERR
">%s: Checksum Error : "
261 "Received data[%02x, %02x, %02x, %02x]"
262 "\n", __func__
, recv_buf
[0],
263 recv_buf
[1], recv_buf
[2], recv_buf
[3]);
265 /* Check Received Data */
266 if (correct_ack
[0] == recv_buf
[0] &&
267 correct_ack
[1] == recv_buf
[1] &&
268 correct_ack
[2] == recv_buf
[2]) {
269 /* Interval for next command */
276 /* Received NAK or illegal Data */
277 printk(KERN_ERR
">%s: Error : NAK or Illegal Data "
278 "Received\n", __func__
);
282 /* Interval for next command */
288 static void kurobox_pro_power_off(void)
290 const unsigned char watchdogkill
[] = {0x01, 0x35, 0x00};
291 const unsigned char shutdownwait
[] = {0x00, 0x0c};
292 const unsigned char poweroff
[] = {0x00, 0x06};
293 /* 38400 baud divisor */
294 const unsigned divisor
= ((ORION5X_TCLK
+ (8 * 38400)) / (16 * 38400));
296 pr_info("%s: triggering power-off...\n", __func__
);
298 /* hijack uart1 and reset into sane state (38400,8n1,even parity) */
299 writel(0x83, UART1_REG(LCR
));
300 writel(divisor
& 0xff, UART1_REG(DLL
));
301 writel((divisor
>> 8) & 0xff, UART1_REG(DLM
));
302 writel(0x1b, UART1_REG(LCR
));
303 writel(0x00, UART1_REG(IER
));
304 writel(0x07, UART1_REG(FCR
));
305 writel(0x00, UART1_REG(MCR
));
307 /* Send the commands to shutdown the Kurobox Pro */
308 kurobox_pro_miconsend(watchdogkill
, sizeof(watchdogkill
)) ;
309 kurobox_pro_miconsend(shutdownwait
, sizeof(shutdownwait
)) ;
310 kurobox_pro_miconsend(poweroff
, sizeof(poweroff
));
313 /*****************************************************************************
315 ****************************************************************************/
316 static struct orion5x_mpp_mode kurobox_pro_mpp_modes
[] __initdata
= {
319 { 2, MPP_GPIO
}, /* GPIO Micon */
320 { 3, MPP_GPIO
}, /* GPIO Rtc */
323 { 6, MPP_NAND
}, /* NAND Flash REn */
324 { 7, MPP_NAND
}, /* NAND Flash WEn */
329 { 12, MPP_SATA_LED
}, /* SATA 0 presence */
330 { 13, MPP_SATA_LED
}, /* SATA 1 presence */
331 { 14, MPP_SATA_LED
}, /* SATA 0 active */
332 { 15, MPP_SATA_LED
}, /* SATA 1 active */
333 { 16, MPP_UART
}, /* UART1 RXD */
334 { 17, MPP_UART
}, /* UART1 TXD */
335 { 18, MPP_UART
}, /* UART1 CTSn */
336 { 19, MPP_UART
}, /* UART1 RTSn */
340 static void __init
kurobox_pro_init(void)
343 * Setup basic Orion functions. Need to be called early.
347 orion5x_mpp_conf(kurobox_pro_mpp_modes
);
350 * Configure peripherals.
352 orion5x_ehci0_init();
353 orion5x_ehci1_init();
354 orion5x_eth_init(&kurobox_pro_eth_data
);
356 orion5x_sata_init(&kurobox_pro_sata_data
);
357 orion5x_uart0_init();
358 orion5x_uart1_init();
360 orion5x_setup_dev_boot_win(KUROBOX_PRO_NOR_BOOT_BASE
,
361 KUROBOX_PRO_NOR_BOOT_SIZE
);
362 platform_device_register(&kurobox_pro_nor_flash
);
364 if (machine_is_kurobox_pro()) {
365 orion5x_setup_dev0_win(KUROBOX_PRO_NAND_BASE
,
366 KUROBOX_PRO_NAND_SIZE
);
367 platform_device_register(&kurobox_pro_nand_flash
);
370 i2c_register_board_info(0, &kurobox_pro_i2c_rtc
, 1);
372 /* register Kurobox Pro specific power-off method */
373 pm_power_off
= kurobox_pro_power_off
;
376 #ifdef CONFIG_MACH_KUROBOX_PRO
377 MACHINE_START(KUROBOX_PRO
, "Buffalo/Revogear Kurobox Pro")
378 /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */
379 .phys_io
= ORION5X_REGS_PHYS_BASE
,
380 .io_pg_offst
= ((ORION5X_REGS_VIRT_BASE
) >> 18) & 0xFFFC,
381 .boot_params
= 0x00000100,
382 .init_machine
= kurobox_pro_init
,
383 .map_io
= orion5x_map_io
,
384 .init_irq
= orion5x_init_irq
,
385 .timer
= &orion5x_timer
,
386 .fixup
= tag_fixup_mem32
,
390 #ifdef CONFIG_MACH_LINKSTATION_PRO
391 MACHINE_START(LINKSTATION_PRO
, "Buffalo Linkstation Pro/Live")
392 /* Maintainer: Byron Bradley <byron.bbradley@gmail.com> */
393 .phys_io
= ORION5X_REGS_PHYS_BASE
,
394 .io_pg_offst
= ((ORION5X_REGS_VIRT_BASE
) >> 18) & 0xFFFC,
395 .boot_params
= 0x00000100,
396 .init_machine
= kurobox_pro_init
,
397 .map_io
= orion5x_map_io
,
398 .init_irq
= orion5x_init_irq
,
399 .timer
= &orion5x_timer
,
400 .fixup
= tag_fixup_mem32
,