2 * arch/arm/mach-orion5x/dns323-setup.c
4 * Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/pci.h>
17 #include <linux/irq.h>
18 #include <linux/mtd/physmap.h>
19 #include <linux/mv643xx_eth.h>
20 #include <linux/leds.h>
21 #include <linux/gpio_keys.h>
22 #include <linux/input.h>
23 #include <linux/i2c.h>
24 #include <linux/ata_platform.h>
25 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/pci.h>
29 #include <mach/orion5x.h>
33 #define DNS323_GPIO_LED_RIGHT_AMBER 1
34 #define DNS323_GPIO_LED_LEFT_AMBER 2
35 #define DNS323_GPIO_LED_POWER 5
36 #define DNS323_GPIO_OVERTEMP 6
37 #define DNS323_GPIO_RTC 7
38 #define DNS323_GPIO_POWER_OFF 8
39 #define DNS323_GPIO_KEY_POWER 9
40 #define DNS323_GPIO_KEY_RESET 10
42 /****************************************************************************
46 static int __init
dns323_pci_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
51 * Check for devices with hard-wired IRQs.
53 irq
= orion5x_pci_map_irq(dev
, slot
, pin
);
60 static struct hw_pci dns323_pci __initdata
= {
62 .swizzle
= pci_std_swizzle
,
63 .setup
= orion5x_pci_sys_setup
,
64 .scan
= orion5x_pci_sys_scan_bus
,
65 .map_irq
= dns323_pci_map_irq
,
68 static int __init
dns323_dev_id(void)
72 orion5x_pcie_id(&dev
, &rev
);
77 static int __init
dns323_pci_init(void)
79 /* The 5182 doesn't really use its PCI bus, and initialising PCI
80 * gets in the way of initialising the SATA controller.
82 if (machine_is_dns323() && dns323_dev_id() != MV88F5182_DEV_ID
)
83 pci_common_init(&dns323_pci
);
88 subsys_initcall(dns323_pci_init
);
90 /****************************************************************************
91 * 8MiB NOR flash (Spansion S29GL064M90TFIR4)
93 * Layout as used by D-Link:
94 * 0x00000000-0x00010000 : "MTD1"
95 * 0x00010000-0x00020000 : "MTD2"
96 * 0x00020000-0x001a0000 : "Linux Kernel"
97 * 0x001a0000-0x007d0000 : "File System"
98 * 0x007d0000-0x00800000 : "u-boot"
101 #define DNS323_NOR_BOOT_BASE 0xf4000000
102 #define DNS323_NOR_BOOT_SIZE SZ_8M
104 static struct mtd_partition dns323_partitions
[] = {
112 .offset
= 0x00010000,
114 .name
= "Linux Kernel",
116 .offset
= 0x00020000,
118 .name
= "File System",
120 .offset
= 0x001A0000,
124 .offset
= 0x007d0000,
128 static struct physmap_flash_data dns323_nor_flash_data
= {
130 .parts
= dns323_partitions
,
131 .nr_parts
= ARRAY_SIZE(dns323_partitions
)
134 static struct resource dns323_nor_flash_resource
= {
135 .flags
= IORESOURCE_MEM
,
136 .start
= DNS323_NOR_BOOT_BASE
,
137 .end
= DNS323_NOR_BOOT_BASE
+ DNS323_NOR_BOOT_SIZE
- 1,
140 static struct platform_device dns323_nor_flash
= {
141 .name
= "physmap-flash",
144 .platform_data
= &dns323_nor_flash_data
,
146 .resource
= &dns323_nor_flash_resource
,
150 /****************************************************************************
154 static struct mv643xx_eth_platform_data dns323_eth_data
= {
155 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
158 /* dns323_parse_hex_*() taken from tsx09-common.c; should a common copy of these
159 * functions be kept somewhere?
161 static int __init
dns323_parse_hex_nibble(char n
)
163 if (n
>= '0' && n
<= '9')
166 if (n
>= 'A' && n
<= 'F')
169 if (n
>= 'a' && n
<= 'f')
175 static int __init
dns323_parse_hex_byte(const char *b
)
180 hi
= dns323_parse_hex_nibble(b
[0]);
181 lo
= dns323_parse_hex_nibble(b
[1]);
183 if (hi
< 0 || lo
< 0)
186 return (hi
<< 4) | lo
;
189 static int __init
dns323_read_mac_addr(void)
195 /* MAC address is stored as a regular ol' string in /dev/mtdblock4
196 * (0x007d0000-0x00800000) starting at offset 196480 (0x2ff80).
198 mac_page
= ioremap(DNS323_NOR_BOOT_BASE
+ 0x7d0000 + 196480, 1024);
202 /* Sanity check the string we're looking at */
203 for (i
= 0; i
< 5; i
++) {
204 if (*(mac_page
+ (i
* 3) + 2) != ':') {
209 for (i
= 0; i
< 6; i
++) {
212 byte
= dns323_parse_hex_byte(mac_page
+ (i
* 3));
221 printk("DNS323: Found ethernet MAC address: ");
222 for (i
= 0; i
< 6; i
++)
223 printk("%.2x%s", addr
[i
], (i
< 5) ? ":" : ".\n");
225 memcpy(dns323_eth_data
.mac_addr
, addr
, 6);
234 /****************************************************************************
235 * GPIO LEDs (simple - doesn't use hardware blinking support)
238 static struct gpio_led dns323_leds
[] = {
240 .name
= "power:blue",
241 .gpio
= DNS323_GPIO_LED_POWER
,
244 .name
= "right:amber",
245 .gpio
= DNS323_GPIO_LED_RIGHT_AMBER
,
248 .name
= "left:amber",
249 .gpio
= DNS323_GPIO_LED_LEFT_AMBER
,
254 static struct gpio_led_platform_data dns323_led_data
= {
255 .num_leds
= ARRAY_SIZE(dns323_leds
),
259 static struct platform_device dns323_gpio_leds
= {
263 .platform_data
= &dns323_led_data
,
267 /****************************************************************************
271 static struct gpio_keys_button dns323_buttons
[] = {
274 .gpio
= DNS323_GPIO_KEY_RESET
,
275 .desc
= "Reset Button",
279 .gpio
= DNS323_GPIO_KEY_POWER
,
280 .desc
= "Power Button",
285 static struct gpio_keys_platform_data dns323_button_data
= {
286 .buttons
= dns323_buttons
,
287 .nbuttons
= ARRAY_SIZE(dns323_buttons
),
290 static struct platform_device dns323_button_device
= {
295 .platform_data
= &dns323_button_data
,
299 /*****************************************************************************
302 static struct mv_sata_platform_data dns323_sata_data
= {
306 /****************************************************************************
309 static struct orion5x_mpp_mode dns323_mv88f5181_mpp_modes
[] __initdata
= {
310 { 0, MPP_PCIE_RST_OUTn
},
311 { 1, MPP_GPIO
}, /* right amber LED (sata ch0) */
312 { 2, MPP_GPIO
}, /* left amber LED (sata ch1) */
314 { 4, MPP_GPIO
}, /* power button LED */
315 { 5, MPP_GPIO
}, /* power button LED */
316 { 6, MPP_GPIO
}, /* GMT G751-2f overtemp */
317 { 7, MPP_GPIO
}, /* M41T80 nIRQ/OUT/SQW */
318 { 8, MPP_GPIO
}, /* triggers power off */
319 { 9, MPP_GPIO
}, /* power button switch */
320 { 10, MPP_GPIO
}, /* reset button switch */
333 static struct orion5x_mpp_mode dns323_mv88f5182_mpp_modes
[] __initdata
= {
335 { 1, MPP_GPIO
}, /* right amber LED (sata ch0) */
336 { 2, MPP_GPIO
}, /* left amber LED (sata ch1) */
338 { 4, MPP_GPIO
}, /* power button LED */
339 { 5, MPP_GPIO
}, /* power button LED */
340 { 6, MPP_GPIO
}, /* GMT G751-2f overtemp */
341 { 7, MPP_GPIO
}, /* M41T80 nIRQ/OUT/SQW */
342 { 8, MPP_GPIO
}, /* triggers power off */
343 { 9, MPP_GPIO
}, /* power button switch */
344 { 10, MPP_GPIO
}, /* reset button switch */
346 { 12, MPP_SATA_LED
},
347 { 13, MPP_SATA_LED
},
348 { 14, MPP_SATA_LED
},
349 { 15, MPP_SATA_LED
},
358 * On the DNS-323 the following devices are attached via I2C:
360 * i2c addr | chip | description
361 * 0x3e | GMT G760Af | fan speed PWM controller
362 * 0x48 | GMT G751-2f | temp. sensor and therm. watchdog (LM75 compatible)
363 * 0x68 | ST M41T80 | RTC w/ alarm
365 static struct i2c_board_info __initdata dns323_i2c_devices
[] = {
367 I2C_BOARD_INFO("g760a", 0x3e),
369 I2C_BOARD_INFO("lm75", 0x48),
371 I2C_BOARD_INFO("m41t80", 0x68),
375 /* DNS-323 specific power off method */
376 static void dns323_power_off(void)
378 pr_info("%s: triggering power-off...\n", __func__
);
379 gpio_set_value(DNS323_GPIO_POWER_OFF
, 1);
382 static void __init
dns323_init(void)
384 /* Setup basic Orion functions. Need to be called early. */
387 /* Just to be tricky, the 5182 has a completely different
388 * set of MPP modes to the 5181.
390 if (dns323_dev_id() == MV88F5182_DEV_ID
)
391 orion5x_mpp_conf(dns323_mv88f5182_mpp_modes
);
393 orion5x_mpp_conf(dns323_mv88f5181_mpp_modes
);
394 writel(0, MPP_DEV_CTRL
); /* DEV_D[31:16] */
397 /* setup flash mapping
398 * CS3 holds a 8 MB Spansion S29GL064M90TFIR4
400 orion5x_setup_dev_boot_win(DNS323_NOR_BOOT_BASE
, DNS323_NOR_BOOT_SIZE
);
401 platform_device_register(&dns323_nor_flash
);
403 platform_device_register(&dns323_gpio_leds
);
405 platform_device_register(&dns323_button_device
);
407 i2c_register_board_info(0, dns323_i2c_devices
,
408 ARRAY_SIZE(dns323_i2c_devices
));
411 * Configure peripherals.
413 if (dns323_read_mac_addr() < 0)
414 printk("DNS323: Failed to read MAC address\n");
416 orion5x_ehci0_init();
417 orion5x_eth_init(&dns323_eth_data
);
419 orion5x_uart0_init();
421 /* The 5182 has its SATA controller on-chip, and needs its own little
424 if (dns323_dev_id() == MV88F5182_DEV_ID
)
425 orion5x_sata_init(&dns323_sata_data
);
427 /* register dns323 specific power-off method */
428 if (gpio_request(DNS323_GPIO_POWER_OFF
, "POWEROFF") != 0 ||
429 gpio_direction_output(DNS323_GPIO_POWER_OFF
, 0) != 0)
430 pr_err("DNS323: failed to setup power-off GPIO\n");
431 pm_power_off
= dns323_power_off
;
434 /* Warning: D-Link uses a wrong mach-type (=526) in their bootloader */
435 MACHINE_START(DNS323
, "D-Link DNS-323")
436 /* Maintainer: Herbert Valerio Riedel <hvr@gnu.org> */
437 .phys_io
= ORION5X_REGS_PHYS_BASE
,
438 .io_pg_offst
= ((ORION5X_REGS_VIRT_BASE
) >> 18) & 0xFFFC,
439 .boot_params
= 0x00000100,
440 .init_machine
= dns323_init
,
441 .map_io
= orion5x_map_io
,
442 .init_irq
= orion5x_init_irq
,
443 .timer
= &orion5x_timer
,
444 .fixup
= tag_fixup_mem32
,