1 Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c
2 ===================================================================
3 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
4 +++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c 2008-01-11 17:06:33.000000000 +1030
7 + * arch/arch/mach-ixp4xx/fsg-pci.c
9 + * FSG board-level PCI initialization
11 + * Author: Rod Whitby <rod@whitby.id.au>
12 + * Maintainer: http://www.nslu2-linux.org/
14 + * based on ixdp425-pci.c:
15 + * Copyright (C) 2002 Intel Corporation.
16 + * Copyright (C) 2003-2004 MontaVista Software, Inc.
18 + * This program is free software; you can redistribute it and/or modify
19 + * it under the terms of the GNU General Public License version 2 as
20 + * published by the Free Software Foundation.
24 +#include <linux/pci.h>
25 +#include <linux/init.h>
26 +#include <linux/irq.h>
28 +#include <asm/mach/pci.h>
29 +#include <asm/mach-types.h>
31 +void __init fsg_pci_preinit(void)
33 + set_irq_type(IRQ_FSG_PCI_INTA, IRQT_LOW);
34 + set_irq_type(IRQ_FSG_PCI_INTB, IRQT_LOW);
35 + set_irq_type(IRQ_FSG_PCI_INTC, IRQT_LOW);
37 + ixp4xx_pci_preinit();
40 +static int __init fsg_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
42 + static int pci_irq_table[FSG_PCI_IRQ_LINES] = {
51 + if (slot >= 1 && slot <= FSG_PCI_MAX_DEV &&
52 + pin >= 1 && pin <= FSG_PCI_IRQ_LINES) {
53 + irq = pci_irq_table[(slot - 1)];
55 + printk("%s: Mapped slot %d pin %d to IRQ %d\n", __FUNCTION__,slot, pin, irq);
60 +struct hw_pci fsg_pci __initdata = {
61 + .nr_controllers = 1,
62 + .preinit = fsg_pci_preinit,
63 + .swizzle = pci_std_swizzle,
64 + .setup = ixp4xx_setup,
65 + .scan = ixp4xx_scan_bus,
66 + .map_irq = fsg_map_irq,
69 +int __init fsg_pci_init(void)
71 + if (machine_is_fsg())
72 + pci_common_init(&fsg_pci);
76 +subsys_initcall(fsg_pci_init);
77 Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
78 ===================================================================
79 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
80 +++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c 2008-01-11 17:06:33.000000000 +1030
83 + * arch/arm/mach-ixp4xx/fsg-setup.c
87 + * based ixdp425-setup.c:
88 + * Copyright (C) 2003-2004 MontaVista Software, Inc.
90 + * Author: Rod Whitby <rod@whitby.id.au>
91 + * Maintainers: http://www.nslu2-linux.org/
95 +#include <linux/kernel.h>
96 +#include <linux/serial.h>
97 +#include <linux/serial_8250.h>
98 +#include <linux/leds.h>
99 +#include <linux/reboot.h>
100 +#include <linux/i2c-gpio.h>
102 +#include <asm/mach-types.h>
103 +#include <asm/mach/arch.h>
104 +#include <asm/mach/flash.h>
107 +static struct flash_platform_data fsg_flash_data = {
108 + .map_name = "cfi_probe",
112 +static struct resource fsg_flash_resource = {
113 + .flags = IORESOURCE_MEM,
116 +static struct platform_device fsg_flash = {
117 + .name = "IXP4XX-Flash",
119 + .dev.platform_data = &fsg_flash_data,
120 + .num_resources = 1,
121 + .resource = &fsg_flash_resource,
124 +static struct i2c_gpio_platform_data fsg_i2c_gpio_data = {
125 + .sda_pin = FSG_SDA_PIN,
126 + .scl_pin = FSG_SCL_PIN,
129 +static struct platform_device fsg_i2c_gpio = {
130 + .name = "i2c-gpio",
133 + .platform_data = &fsg_i2c_gpio_data,
137 +static struct resource fsg_uart_resources[] = {
139 + .start = IXP4XX_UART1_BASE_PHYS,
140 + .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
141 + .flags = IORESOURCE_MEM,
144 + .start = IXP4XX_UART2_BASE_PHYS,
145 + .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
146 + .flags = IORESOURCE_MEM,
150 +static struct plat_serial8250_port fsg_uart_data[] = {
152 + .mapbase = IXP4XX_UART1_BASE_PHYS,
153 + .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
154 + .irq = IRQ_IXP4XX_UART1,
155 + .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
156 + .iotype = UPIO_MEM,
158 + .uartclk = IXP4XX_UART_XTAL,
161 + .mapbase = IXP4XX_UART2_BASE_PHYS,
162 + .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
163 + .irq = IRQ_IXP4XX_UART2,
164 + .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
165 + .iotype = UPIO_MEM,
167 + .uartclk = IXP4XX_UART_XTAL,
172 +static struct platform_device fsg_uart = {
173 + .name = "serial8250",
174 + .id = PLAT8250_DEV_PLATFORM,
175 + .dev.platform_data = fsg_uart_data,
176 + .num_resources = ARRAY_SIZE(fsg_uart_resources),
177 + .resource = fsg_uart_resources,
180 +static struct platform_device fsg_leds = {
185 +/* Built-in 10/100 Ethernet MAC interfaces */
186 +static struct eth_plat_info fsg_plat_eth[] = {
198 +static struct platform_device fsg_eth[] = {
200 + .name = "ixp4xx_eth",
201 + .id = IXP4XX_ETH_NPEB,
202 + .dev.platform_data = fsg_plat_eth,
204 + .name = "ixp4xx_eth",
205 + .id = IXP4XX_ETH_NPEC,
206 + .dev.platform_data = fsg_plat_eth + 1,
210 +static struct platform_device *fsg_devices[] __initdata = {
218 +static void fsg_power_off(void)
220 + printk("Restarting system.\n");
221 + machine_restart(NULL);
224 +static void __init fsg_init(void)
226 + uint8_t __iomem *f;
231 + pm_power_off = fsg_power_off;
233 + fsg_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
234 + fsg_flash_resource.end =
235 + IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
237 + *IXP4XX_EXP_CS0 |= IXP4XX_FLASH_WRITABLE;
238 + *IXP4XX_EXP_CS1 = *IXP4XX_EXP_CS0;
240 + /* Configure CS2 for operation, 8bit and writable */
241 + *IXP4XX_EXP_CS2 = 0xbfff0002;
243 + /* This is only useful on a modified machine, but it is valuable
244 + * to have it first in order to see debug messages, and so that
245 + * it does *not* get removed if platform_add_devices fails!
247 + (void)platform_device_register(&fsg_uart);
249 + platform_add_devices(fsg_devices, ARRAY_SIZE(fsg_devices));
253 + * Map in a portion of the flash and read the MAC addresses.
254 + * Since it is stored in BE in the flash itself, we need to
255 + * byteswap it if we're in LE mode.
257 + if ((f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000))) {
259 + for (i = 0; i < 6; i++) {
260 + fsg_plat_eth[0].hwaddr[i] = readb(f + 0x3C0422 + i);
261 + fsg_plat_eth[1].hwaddr[i] = readb(f + 0x3C043B + i);
264 + fsg_plat_eth[0].hwaddr[0] = readb(f + 0x3C0422 + 3);
265 + fsg_plat_eth[0].hwaddr[1] = readb(f + 0x3C0422 + 2);
266 + fsg_plat_eth[0].hwaddr[2] = readb(f + 0x3C0422 + 1);
267 + fsg_plat_eth[0].hwaddr[3] = readb(f + 0x3C0422 + 0);
268 + fsg_plat_eth[0].hwaddr[4] = readb(f + 0x3C0422 + 7);
269 + fsg_plat_eth[0].hwaddr[5] = readb(f + 0x3C0422 + 6);
271 + fsg_plat_eth[1].hwaddr[0] = readb(f + 0x3C0422 + 3);
272 + fsg_plat_eth[1].hwaddr[1] = readb(f + 0x3C0422 + 2);
273 + fsg_plat_eth[1].hwaddr[2] = readb(f + 0x3C0422 + 1);
274 + fsg_plat_eth[1].hwaddr[3] = readb(f + 0x3C0422 + 0);
275 + fsg_plat_eth[1].hwaddr[4] = readb(f + 0x3C0422 + 7);
276 + fsg_plat_eth[1].hwaddr[5] = readb(f + 0x3C0422 + 6);
280 + printk(KERN_INFO "FSG: Using MAC address %.2x:%.2x:%.2x:%.2x:%.2x:%.2x for port 0\n",
281 + fsg_plat_eth[0].hwaddr[0], fsg_plat_eth[0].hwaddr[1],
282 + fsg_plat_eth[0].hwaddr[2], fsg_plat_eth[0].hwaddr[3],
283 + fsg_plat_eth[0].hwaddr[4], fsg_plat_eth[0].hwaddr[5]);
284 + printk(KERN_INFO "FSG: Using MAC address %.2x:%.2x:%.2x:%.2x:%.2x:%.2x for port 1\n",
285 + fsg_plat_eth[1].hwaddr[0], fsg_plat_eth[1].hwaddr[1],
286 + fsg_plat_eth[1].hwaddr[2], fsg_plat_eth[1].hwaddr[3],
287 + fsg_plat_eth[1].hwaddr[4], fsg_plat_eth[1].hwaddr[5]);
291 +MACHINE_START(FSG, "Freecom FSG-3")
292 + /* Maintainer: www.nslu2-linux.org */
293 + .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
294 + .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
295 + .map_io = ixp4xx_map_io,
296 + .init_irq = ixp4xx_init_irq,
297 + .timer = &ixp4xx_timer,
298 + .boot_params = 0x0100,
299 + .init_machine = fsg_init,
302 Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Kconfig
303 ===================================================================
304 --- linux-2.6.23.12-armeb.orig/arch/arm/mach-ixp4xx/Kconfig 2008-01-11 17:05:08.000000000 +1030
305 +++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Kconfig 2008-01-11 17:06:33.000000000 +1030
307 depends on ARCH_IXDP425 || MACH_IXDP465 || MACH_KIXRP435
312 + prompt "Freecom FSG-3"
315 + Say 'Y' here if you want your kernel to support Freecom's
316 + FSG-3 device. For more information on this platform,
317 + see http://www.nslu2-linux.org/wiki/FSG3/HomePage
320 # Certain registers and IRQs are only enabled if supporting IXP465 CPUs
322 Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Makefile
323 ===================================================================
324 --- linux-2.6.23.12-armeb.orig/arch/arm/mach-ixp4xx/Makefile 2008-01-11 17:05:08.000000000 +1030
325 +++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Makefile 2008-01-11 17:06:33.000000000 +1030
327 obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
328 obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
329 obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
330 +obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
335 obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o dsmg600-power.o
336 obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
337 obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
338 +obj-$(CONFIG_MACH_FSG) += fsg-setup.o fsg-power.o
340 obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
341 obj-$(CONFIG_IXP4XX_QMGR) += ixp4xx_qmgr.o
342 Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/fsg.h
343 ===================================================================
344 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
345 +++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/fsg.h 2008-01-11 17:06:33.000000000 +1030
348 + * include/asm-arm/arch-ixp4xx/fsg.h
350 + * Freecom FSG-3 platform specific definitions
352 + * Author: Rod Whitby <rod@whitby.id.au>
353 + * Author: Tomasz Chmielewski <mangoo@wpkg.org>
354 + * Maintainers: http://www.nslu2-linux.org
356 + * Based on coyote.h by
357 + * Copyright 2004 (c) MontaVista, Software, Inc.
359 + * This file is licensed under the terms of the GNU General Public
360 + * License version 2. This program is licensed "as is" without any
361 + * warranty of any kind, whether express or implied.
364 +#ifndef __ASM_ARCH_HARDWARE_H__
365 +#error "Do not include this directly, instead #include <asm/hardware.h>"
368 +#define FSG_SDA_PIN 12
369 +#define FSG_SCL_PIN 13
374 +#define FSG_PCI_MAX_DEV 3
375 +#define FSG_PCI_IRQ_LINES 3
378 +/* PCI controller GPIO to IRQ pin mappings */
379 +#define FSG_PCI_INTA_PIN 6
380 +#define FSG_PCI_INTB_PIN 7
381 +#define FSG_PCI_INTC_PIN 5
385 +#define FSG_SB_GPIO 4 /* sync button */
386 +#define FSG_RB_GPIO 9 /* reset button */
387 +#define FSG_UB_GPIO 10 /* usb button */
391 +#define FSG_LED_WLAN_BIT 0
392 +#define FSG_LED_WAN_BIT 1
393 +#define FSG_LED_SATA_BIT 2
394 +#define FSG_LED_USB_BIT 4
395 +#define FSG_LED_RING_BIT 5
396 +#define FSG_LED_SYNC_BIT 7
397 Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/hardware.h
398 ===================================================================
399 --- linux-2.6.23.12-armeb.orig/include/asm-arm/arch-ixp4xx/hardware.h 2008-01-11 17:05:08.000000000 +1030
400 +++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/hardware.h 2008-01-11 17:06:33.000000000 +1030
407 #endif /* _ASM_ARCH_HARDWARE_H */
408 Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/irqs.h
409 ===================================================================
410 --- linux-2.6.23.12-armeb.orig/include/asm-arm/arch-ixp4xx/irqs.h 2008-01-11 17:05:08.000000000 +1030
411 +++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/irqs.h 2008-01-11 17:06:33.000000000 +1030
413 #define IRQ_DSMG600_PCI_INTE IRQ_IXP4XX_GPIO7
414 #define IRQ_DSMG600_PCI_INTF IRQ_IXP4XX_GPIO6
417 + * Freecom FSG-3 Board IRQs
419 +#define IRQ_FSG_PCI_INTA IRQ_IXP4XX_GPIO6
420 +#define IRQ_FSG_PCI_INTB IRQ_IXP4XX_GPIO7
421 +#define IRQ_FSG_PCI_INTC IRQ_IXP4XX_GPIO5
424 Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-power.c
425 ===================================================================
426 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
427 +++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-power.c 2008-01-11 17:06:33.000000000 +1030
430 + * arch/arm/mach-ixp4xx/fsg-power.c
432 + * FSG Power/Reset driver
434 + * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au>
436 + * based on nslu2-power.c
437 + * Copyright (C) 2005 Tower Technologies
439 + * This program is free software; you can redistribute it and/or modify
440 + * it under the terms of the GNU General Public License version 2 as
441 + * published by the Free Software Foundation.
445 +#include <linux/module.h>
446 +#include <linux/reboot.h>
447 +#include <linux/interrupt.h>
448 +#include <linux/irq.h>
449 +#include <linux/jiffies.h>
450 +#include <linux/timer.h>
452 +#include <asm/gpio.h>
453 +#include <asm/mach-types.h>
455 +static irqreturn_t fsg_power_handler(int irq, void *dev_id)
457 + /* Signal init to do the ctrlaltdel action, this will bypass init if
458 + * it hasn't started and do a kernel_restart.
462 + return IRQ_HANDLED;
465 +static irqreturn_t fsg_reset_handler(int irq, void *dev_id)
467 + /* This is the paper-clip reset, it shuts the machine down directly.
469 + machine_power_off();
471 + return IRQ_HANDLED;
474 +static int __init fsg_power_init(void)
476 + if (!(machine_is_fsg()))
479 + set_irq_type(gpio_to_irq(FSG_RB_GPIO), IRQT_LOW);
480 + set_irq_type(gpio_to_irq(FSG_SB_GPIO), IRQT_LOW);
482 + if (request_irq(gpio_to_irq(FSG_RB_GPIO), &fsg_reset_handler,
483 + IRQF_DISABLED, "FSG reset button", NULL) < 0) {
485 + printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
486 + gpio_to_irq(FSG_RB_GPIO));
491 + if (request_irq(gpio_to_irq(FSG_SB_GPIO), &fsg_power_handler,
492 + IRQF_DISABLED, "FSG power button", NULL) < 0) {
494 + printk(KERN_DEBUG "Power Button IRQ %d not available\n",
495 + gpio_to_irq(FSG_SB_GPIO));
503 +static void __exit fsg_power_exit(void)
505 + if (!(machine_is_fsg()))
508 + free_irq(gpio_to_irq(FSG_SB_GPIO), NULL);
509 + free_irq(gpio_to_irq(FSG_RB_GPIO), NULL);
512 +module_init(fsg_power_init);
513 +module_exit(fsg_power_exit);
515 +MODULE_AUTHOR("Rod Whitby <rod@whitby.id.au>");
516 +MODULE_DESCRIPTION("FSG Power/Reset driver");
517 +MODULE_LICENSE("GPL");
518 Index: linux-2.6.23.12-armeb/drivers/leds/Kconfig
519 ===================================================================
520 --- linux-2.6.23.12-armeb.orig/drivers/leds/Kconfig 2008-01-11 17:05:08.000000000 +1030
521 +++ linux-2.6.23.12-armeb/drivers/leds/Kconfig 2008-01-11 17:06:33.000000000 +1030
523 particular board must have LEDs and they must be connected
524 to the GPIO lines. If unsure, say Y.
527 + tristate "LED Support for the Freecom FSG-3"
528 + depends on LEDS_CLASS && MACH_FSG
530 + This option enables support for the LEDs on the Freecom FSG-3.
533 tristate "LED Support for the Sharp SL-6000 series"
534 depends on LEDS_CLASS && PXA_SHARPSL
535 Index: linux-2.6.23.12-armeb/drivers/leds/Makefile
536 ===================================================================
537 --- linux-2.6.23.12-armeb.orig/drivers/leds/Makefile 2008-01-11 17:05:08.000000000 +1030
538 +++ linux-2.6.23.12-armeb/drivers/leds/Makefile 2008-01-11 17:06:33.000000000 +1030
540 obj-$(CONFIG_LEDS_LOCOMO) += leds-locomo.o
541 obj-$(CONFIG_LEDS_SPITZ) += leds-spitz.o
542 obj-$(CONFIG_LEDS_IXP4XX) += leds-ixp4xx-gpio.o
543 +obj-$(CONFIG_LEDS_FSG) += leds-fsg.o
544 obj-$(CONFIG_LEDS_TOSA) += leds-tosa.o
545 obj-$(CONFIG_LEDS_S3C24XX) += leds-s3c24xx.o
546 obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o
547 Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
548 ===================================================================
549 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
550 +++ linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c 2008-01-11 17:06:33.000000000 +1030
553 + * LED Driver for the Freecom FSG-3
555 + * Copyright (c) 2008 Rod Whitby <rod@whitby.id.au>
557 + * Author: Rod Whitby <rod@whitby.id.au>
559 + * Based on leds-spitz.c
560 + * Copyright 2005-2006 Openedhand Ltd.
561 + * Author: Richard Purdie <rpurdie@openedhand.com>
563 + * This program is free software; you can redistribute it and/or modify
564 + * it under the terms of the GNU General Public License version 2 as
565 + * published by the Free Software Foundation.
569 +#include <linux/kernel.h>
570 +#include <linux/init.h>
571 +#include <linux/platform_device.h>
572 +#include <linux/leds.h>
573 +#include <asm/arch/hardware.h>
576 +static short __iomem *latch_address;
577 +static unsigned short latch_value;
580 +static void fsg_led_wlan_set(struct led_classdev *led_cdev, enum led_brightness value)
583 + latch_value &= ~(1 << FSG_LED_WLAN_BIT);
584 + *latch_address = latch_value;
587 + latch_value |= (1 << FSG_LED_WLAN_BIT);
588 + *latch_address = latch_value;
592 +static void fsg_led_wan_set(struct led_classdev *led_cdev, enum led_brightness value)
595 + latch_value &= ~(1 << FSG_LED_WAN_BIT);
596 + *latch_address = latch_value;
599 + latch_value |= (1 << FSG_LED_WAN_BIT);
600 + *latch_address = latch_value;
604 +static void fsg_led_sata_set(struct led_classdev *led_cdev, enum led_brightness value)
607 + latch_value &= ~(1 << FSG_LED_SATA_BIT);
608 + *latch_address = latch_value;
611 + latch_value |= (1 << FSG_LED_SATA_BIT);
612 + *latch_address = latch_value;
616 +static void fsg_led_usb_set(struct led_classdev *led_cdev, enum led_brightness value)
619 + latch_value &= ~(1 << FSG_LED_USB_BIT);
620 + *latch_address = latch_value;
623 + latch_value |= (1 << FSG_LED_USB_BIT);
624 + *latch_address = latch_value;
628 +static void fsg_led_sync_set(struct led_classdev *led_cdev, enum led_brightness value)
631 + latch_value &= ~(1 << FSG_LED_SYNC_BIT);
632 + *latch_address = latch_value;
635 + latch_value |= (1 << FSG_LED_SYNC_BIT);
636 + *latch_address = latch_value;
640 +static void fsg_led_ring_set(struct led_classdev *led_cdev, enum led_brightness value)
643 + latch_value &= ~(1 << FSG_LED_RING_BIT);
644 + *latch_address = latch_value;
647 + latch_value |= (1 << FSG_LED_RING_BIT);
648 + *latch_address = latch_value;
654 +static struct led_classdev fsg_wlan_led = {
655 + .name = "fsg:wlan",
656 + .brightness_set = fsg_led_wlan_set,
659 +static struct led_classdev fsg_wan_led = {
661 + .brightness_set = fsg_led_wan_set,
664 +static struct led_classdev fsg_sata_led = {
665 + .name = "fsg:sata",
666 + .brightness_set = fsg_led_sata_set,
669 +static struct led_classdev fsg_usb_led = {
671 + .brightness_set = fsg_led_usb_set,
674 +static struct led_classdev fsg_sync_led = {
675 + .name = "fsg:sync",
676 + .brightness_set = fsg_led_sync_set,
679 +static struct led_classdev fsg_ring_led = {
680 + .name = "fsg:ring",
681 + .brightness_set = fsg_led_ring_set,
687 +static int fsg_led_suspend(struct platform_device *dev, pm_message_t state)
689 + led_classdev_suspend(&fsg_wlan_led);
690 + led_classdev_suspend(&fsg_wan_led);
691 + led_classdev_suspend(&fsg_sata_led);
692 + led_classdev_suspend(&fsg_usb_led);
693 + led_classdev_suspend(&fsg_sync_led);
694 + led_classdev_suspend(&fsg_ring_led);
698 +static int fsg_led_resume(struct platform_device *dev)
700 + led_classdev_resume(&fsg_wlan_led);
701 + led_classdev_resume(&fsg_wan_led);
702 + led_classdev_resume(&fsg_sata_led);
703 + led_classdev_resume(&fsg_usb_led);
704 + led_classdev_resume(&fsg_sync_led);
705 + led_classdev_resume(&fsg_ring_led);
711 +static int fsg_led_probe(struct platform_device *pdev)
715 + /* FIXME: Need to work out how to handle failure below */
717 + ret = led_classdev_register(&pdev->dev, &fsg_wlan_led);
721 + ret = led_classdev_register(&pdev->dev, &fsg_wan_led);
725 + ret = led_classdev_register(&pdev->dev, &fsg_sata_led);
729 + ret = led_classdev_register(&pdev->dev, &fsg_usb_led);
733 + ret = led_classdev_register(&pdev->dev, &fsg_sync_led);
737 + ret = led_classdev_register(&pdev->dev, &fsg_ring_led);
744 +static int fsg_led_remove(struct platform_device *pdev)
746 + led_classdev_unregister(&fsg_wlan_led);
747 + led_classdev_unregister(&fsg_wan_led);
748 + led_classdev_unregister(&fsg_sata_led);
749 + led_classdev_unregister(&fsg_usb_led);
750 + led_classdev_unregister(&fsg_sync_led);
751 + led_classdev_unregister(&fsg_ring_led);
757 +static struct platform_driver fsg_led_driver = {
758 + .probe = fsg_led_probe,
759 + .remove = fsg_led_remove,
761 + .suspend = fsg_led_suspend,
762 + .resume = fsg_led_resume,
770 +static int __init fsg_led_init(void)
772 + /* Map the LED chip select address space */
773 + latch_address = (unsigned short *) ioremap(IXP4XX_EXP_BUS_BASE(2), 512);
774 + if (!latch_address)
776 + latch_value = 0xffff;
777 + *latch_address = latch_value;
778 + /* FIXME: We leak memory if the next line fails */
779 + return platform_driver_register(&fsg_led_driver);
782 +static void __exit fsg_led_exit(void)
784 + platform_driver_unregister(&fsg_led_driver);
785 + iounmap(latch_address);
789 +module_init(fsg_led_init);
790 +module_exit(fsg_led_exit);
792 +MODULE_AUTHOR("Rod Whitby <rod@whitby.id.au>");
793 +MODULE_DESCRIPTION("Freecom FSG-3 LED driver");
794 +MODULE_LICENSE("GPL");