123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- #include <linux/gpio.h>
- #include <linux/irq.h>
- #include <linux/jiffies.h>
- #include <linux/timer.h>
- #include <linux/serial.h>
- #include <linux/serial_8250.h>
- #include <linux/leds.h>
- #include <linux/reboot.h>
- #include <linux/i2c.h>
- #include <linux/i2c-gpio.h>
- #include <linux/gpio.h>
- #include <mach/hardware.h>
- #include <asm/mach-types.h>
- #include <asm/mach/arch.h>
- #include <asm/mach/flash.h>
- #include <asm/mach/time.h>
- #define DSMG600_SDA_PIN 5
- #define DSMG600_SCL_PIN 4
- #define DSMG600_FREQ 66000000
- #define DSMG600_PB_GPIO 15
- #define DSMG600_RB_GPIO 3
- #define DSMG600_PO_GPIO 2
- #define DSMG600_LED_PWR_GPIO 0
- #define DSMG600_LED_WLAN_GPIO 14
- static struct flash_platform_data dsmg600_flash_data = {
- .map_name = "cfi_probe",
- .width = 2,
- };
- static struct resource dsmg600_flash_resource = {
- .flags = IORESOURCE_MEM,
- };
- static struct platform_device dsmg600_flash = {
- .name = "IXP4XX-Flash",
- .id = 0,
- .dev.platform_data = &dsmg600_flash_data,
- .num_resources = 1,
- .resource = &dsmg600_flash_resource,
- };
- static struct i2c_gpio_platform_data dsmg600_i2c_gpio_data = {
- .sda_pin = DSMG600_SDA_PIN,
- .scl_pin = DSMG600_SCL_PIN,
- };
- static struct platform_device dsmg600_i2c_gpio = {
- .name = "i2c-gpio",
- .id = 0,
- .dev = {
- .platform_data = &dsmg600_i2c_gpio_data,
- },
- };
- static struct i2c_board_info __initdata dsmg600_i2c_board_info [] = {
- {
- I2C_BOARD_INFO("pcf8563", 0x51),
- },
- };
- static struct gpio_led dsmg600_led_pins[] = {
- {
- .name = "dsmg600:green:power",
- .gpio = DSMG600_LED_PWR_GPIO,
- },
- {
- .name = "dsmg600:green:wlan",
- .gpio = DSMG600_LED_WLAN_GPIO,
- .active_low = true,
- },
- };
- static struct gpio_led_platform_data dsmg600_led_data = {
- .num_leds = ARRAY_SIZE(dsmg600_led_pins),
- .leds = dsmg600_led_pins,
- };
- static struct platform_device dsmg600_leds = {
- .name = "leds-gpio",
- .id = -1,
- .dev.platform_data = &dsmg600_led_data,
- };
- static struct resource dsmg600_uart_resources[] = {
- {
- .start = IXP4XX_UART1_BASE_PHYS,
- .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
- .flags = IORESOURCE_MEM,
- },
- {
- .start = IXP4XX_UART2_BASE_PHYS,
- .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
- .flags = IORESOURCE_MEM,
- }
- };
- static struct plat_serial8250_port dsmg600_uart_data[] = {
- {
- .mapbase = IXP4XX_UART1_BASE_PHYS,
- .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
- .irq = IRQ_IXP4XX_UART1,
- .flags = UPF_BOOT_AUTOCONF,
- .iotype = UPIO_MEM,
- .regshift = 2,
- .uartclk = IXP4XX_UART_XTAL,
- },
- {
- .mapbase = IXP4XX_UART2_BASE_PHYS,
- .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
- .irq = IRQ_IXP4XX_UART2,
- .flags = UPF_BOOT_AUTOCONF,
- .iotype = UPIO_MEM,
- .regshift = 2,
- .uartclk = IXP4XX_UART_XTAL,
- },
- { }
- };
- static struct platform_device dsmg600_uart = {
- .name = "serial8250",
- .id = PLAT8250_DEV_PLATFORM,
- .dev.platform_data = dsmg600_uart_data,
- .num_resources = ARRAY_SIZE(dsmg600_uart_resources),
- .resource = dsmg600_uart_resources,
- };
- static struct platform_device *dsmg600_devices[] __initdata = {
- &dsmg600_i2c_gpio,
- &dsmg600_flash,
- &dsmg600_leds,
- };
- static void dsmg600_power_off(void)
- {
-
- gpio_direction_output(DSMG600_PO_GPIO, 1);
- }
- static int power_button_countdown;
- #define PBUTTON_HOLDDOWN_COUNT 4
- static void dsmg600_power_handler(unsigned long data);
- static DEFINE_TIMER(dsmg600_power_timer, dsmg600_power_handler, 0, 0);
- static void dsmg600_power_handler(unsigned long data)
- {
-
- if (gpio_get_value(DSMG600_PB_GPIO)) {
-
- if (power_button_countdown > 0)
- power_button_countdown--;
- } else {
-
- if (power_button_countdown == 0) {
-
- ctrl_alt_del();
-
- gpio_set_value(DSMG600_LED_PWR_GPIO, 0);
- } else {
- power_button_countdown = PBUTTON_HOLDDOWN_COUNT;
- }
- }
- mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500));
- }
- static irqreturn_t dsmg600_reset_handler(int irq, void *dev_id)
- {
-
- machine_power_off();
- return IRQ_HANDLED;
- }
- static void __init dsmg600_timer_init(void)
- {
-
- ixp4xx_timer_freq = DSMG600_FREQ;
-
- ixp4xx_timer_init();
- }
- static int __init dsmg600_gpio_init(void)
- {
- if (!machine_is_dsmg600())
- return 0;
- gpio_request(DSMG600_RB_GPIO, "reset button");
- if (request_irq(gpio_to_irq(DSMG600_RB_GPIO), &dsmg600_reset_handler,
- IRQF_TRIGGER_LOW, "DSM-G600 reset button", NULL) < 0) {
- printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
- gpio_to_irq(DSMG600_RB_GPIO));
- }
-
-
- gpio_request(DSMG600_PB_GPIO, "power button");
- gpio_direction_input(DSMG600_PB_GPIO);
-
- gpio_request(DSMG600_PO_GPIO, "power off button");
-
- power_button_countdown = PBUTTON_HOLDDOWN_COUNT;
- mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500));
- return 0;
- }
- device_initcall(dsmg600_gpio_init);
- static void __init dsmg600_init(void)
- {
- ixp4xx_sys_init();
-
- *IXP4XX_GPIO_GPCLKR = 0;
- dsmg600_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
- dsmg600_flash_resource.end =
- IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
- i2c_register_board_info(0, dsmg600_i2c_board_info,
- ARRAY_SIZE(dsmg600_i2c_board_info));
-
- (void)platform_device_register(&dsmg600_uart);
- platform_add_devices(dsmg600_devices, ARRAY_SIZE(dsmg600_devices));
- pm_power_off = dsmg600_power_off;
- }
- MACHINE_START(DSMG600, "D-Link DSM-G600 RevA")
-
- .atag_offset = 0x100,
- .map_io = ixp4xx_map_io,
- .init_early = ixp4xx_init_early,
- .init_irq = ixp4xx_init_irq,
- .init_time = dsmg600_timer_init,
- .init_machine = dsmg600_init,
- #if defined(CONFIG_PCI)
- .dma_zone_size = SZ_64M,
- #endif
- .restart = ixp4xx_restart,
- MACHINE_END
|