diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/sata_mv.c | 31 | ||||
-rw-r--r-- | drivers/i2c/busses/Kconfig | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-pxa.c | 1 | ||||
-rw-r--r-- | drivers/input/keyboard/corgikbd.c | 1 | ||||
-rw-r--r-- | drivers/input/keyboard/spitzkbd.c | 1 | ||||
-rw-r--r-- | drivers/input/touchscreen/corgi_ts.c | 1 | ||||
-rw-r--r-- | drivers/leds/Kconfig | 7 | ||||
-rw-r--r-- | drivers/leds/Makefile | 1 | ||||
-rw-r--r-- | drivers/leds/leds-tosa.c | 130 | ||||
-rw-r--r-- | drivers/mfd/Kconfig | 16 | ||||
-rw-r--r-- | drivers/mfd/Makefile | 3 | ||||
-rw-r--r-- | drivers/mfd/htc-egpio.c | 440 | ||||
-rw-r--r-- | drivers/mfd/htc-pasic3.c | 265 | ||||
-rw-r--r-- | drivers/mtd/nand/Kconfig | 2 | ||||
-rw-r--r-- | drivers/mtd/nand/orion_nand.c | 2 | ||||
-rw-r--r-- | drivers/net/Kconfig | 2 | ||||
-rw-r--r-- | drivers/net/irda/pxaficp_ir.c | 11 | ||||
-rw-r--r-- | drivers/pci/setup-bus.c | 5 | ||||
-rw-r--r-- | drivers/pcmcia/Kconfig | 1 | ||||
-rw-r--r-- | drivers/pcmcia/pxa2xx_cm_x270.c | 1 | ||||
-rw-r--r-- | drivers/serial/imx.c | 111 | ||||
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 2 | ||||
-rw-r--r-- | drivers/usb/host/ehci-orion.c | 37 | ||||
-rw-r--r-- | drivers/video/pxafb.c | 1 |
24 files changed, 865 insertions, 209 deletions
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index 6ebebde8454a..83584b6e1ba5 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -74,6 +74,7 @@ | |||
74 | #include <linux/device.h> | 74 | #include <linux/device.h> |
75 | #include <linux/platform_device.h> | 75 | #include <linux/platform_device.h> |
76 | #include <linux/ata_platform.h> | 76 | #include <linux/ata_platform.h> |
77 | #include <linux/mbus.h> | ||
77 | #include <scsi/scsi_host.h> | 78 | #include <scsi/scsi_host.h> |
78 | #include <scsi/scsi_cmnd.h> | 79 | #include <scsi/scsi_cmnd.h> |
79 | #include <scsi/scsi_device.h> | 80 | #include <scsi/scsi_device.h> |
@@ -352,6 +353,9 @@ enum { | |||
352 | #define IS_GEN_IIE(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_IIE) | 353 | #define IS_GEN_IIE(hpriv) ((hpriv)->hp_flags & MV_HP_GEN_IIE) |
353 | #define HAS_PCI(host) (!((host)->ports[0]->flags & MV_FLAG_SOC)) | 354 | #define HAS_PCI(host) (!((host)->ports[0]->flags & MV_FLAG_SOC)) |
354 | 355 | ||
356 | #define WINDOW_CTRL(i) (0x20030 + ((i) << 4)) | ||
357 | #define WINDOW_BASE(i) (0x20034 + ((i) << 4)) | ||
358 | |||
355 | enum { | 359 | enum { |
356 | /* DMA boundary 0xffff is required by the s/g splitting | 360 | /* DMA boundary 0xffff is required by the s/g splitting |
357 | * we need on /length/ in mv_fill-sg(). | 361 | * we need on /length/ in mv_fill-sg(). |
@@ -2897,6 +2901,27 @@ static int mv_create_dma_pools(struct mv_host_priv *hpriv, struct device *dev) | |||
2897 | return 0; | 2901 | return 0; |
2898 | } | 2902 | } |
2899 | 2903 | ||
2904 | static void mv_conf_mbus_windows(struct mv_host_priv *hpriv, | ||
2905 | struct mbus_dram_target_info *dram) | ||
2906 | { | ||
2907 | int i; | ||
2908 | |||
2909 | for (i = 0; i < 4; i++) { | ||
2910 | writel(0, hpriv->base + WINDOW_CTRL(i)); | ||
2911 | writel(0, hpriv->base + WINDOW_BASE(i)); | ||
2912 | } | ||
2913 | |||
2914 | for (i = 0; i < dram->num_cs; i++) { | ||
2915 | struct mbus_dram_window *cs = dram->cs + i; | ||
2916 | |||
2917 | writel(((cs->size - 1) & 0xffff0000) | | ||
2918 | (cs->mbus_attr << 8) | | ||
2919 | (dram->mbus_dram_target_id << 4) | 1, | ||
2920 | hpriv->base + WINDOW_CTRL(i)); | ||
2921 | writel(cs->base, hpriv->base + WINDOW_BASE(i)); | ||
2922 | } | ||
2923 | } | ||
2924 | |||
2900 | /** | 2925 | /** |
2901 | * mv_platform_probe - handle a positive probe of an soc Marvell | 2926 | * mv_platform_probe - handle a positive probe of an soc Marvell |
2902 | * host | 2927 | * host |
@@ -2951,6 +2976,12 @@ static int mv_platform_probe(struct platform_device *pdev) | |||
2951 | res->end - res->start + 1); | 2976 | res->end - res->start + 1); |
2952 | hpriv->base -= MV_SATAHC0_REG_BASE; | 2977 | hpriv->base -= MV_SATAHC0_REG_BASE; |
2953 | 2978 | ||
2979 | /* | ||
2980 | * (Re-)program MBUS remapping windows if we are asked to. | ||
2981 | */ | ||
2982 | if (mv_platform_data->dram != NULL) | ||
2983 | mv_conf_mbus_windows(hpriv, mv_platform_data->dram); | ||
2984 | |||
2954 | rc = mv_create_dma_pools(hpriv, &pdev->dev); | 2985 | rc = mv_create_dma_pools(hpriv, &pdev->dev); |
2955 | if (rc) | 2986 | if (rc) |
2956 | return rc; | 2987 | return rc; |
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index 5fa9c3c67e0c..b04c99580d0d 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig | |||
@@ -645,7 +645,7 @@ config I2C_PCA_ISA | |||
645 | 645 | ||
646 | config I2C_MV64XXX | 646 | config I2C_MV64XXX |
647 | tristate "Marvell mv64xxx I2C Controller" | 647 | tristate "Marvell mv64xxx I2C Controller" |
648 | depends on (MV64X60 || ARCH_ORION) && EXPERIMENTAL | 648 | depends on (MV64X60 || PLAT_ORION) && EXPERIMENTAL |
649 | help | 649 | help |
650 | If you say yes to this option, support will be included for the | 650 | If you say yes to this option, support will be included for the |
651 | built-in I2C interface on the Marvell 64xxx line of host bridges. | 651 | built-in I2C interface on the Marvell 64xxx line of host bridges. |
diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c index 2d2087ad708f..6fd2d6a84eff 100644 --- a/drivers/i2c/busses/i2c-pxa.c +++ b/drivers/i2c/busses/i2c-pxa.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <asm/io.h> | 39 | #include <asm/io.h> |
40 | #include <asm/arch/i2c.h> | 40 | #include <asm/arch/i2c.h> |
41 | #include <asm/arch/pxa-regs.h> | 41 | #include <asm/arch/pxa-regs.h> |
42 | #include <asm/arch/pxa2xx-gpio.h> | ||
42 | 43 | ||
43 | struct pxa_i2c { | 44 | struct pxa_i2c { |
44 | spinlock_t lock; | 45 | spinlock_t lock; |
diff --git a/drivers/input/keyboard/corgikbd.c b/drivers/input/keyboard/corgikbd.c index 790fed368aae..5d6cc7f1dc94 100644 --- a/drivers/input/keyboard/corgikbd.c +++ b/drivers/input/keyboard/corgikbd.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/arch/corgi.h> | 23 | #include <asm/arch/corgi.h> |
24 | #include <asm/arch/hardware.h> | 24 | #include <asm/arch/hardware.h> |
25 | #include <asm/arch/pxa-regs.h> | 25 | #include <asm/arch/pxa-regs.h> |
26 | #include <asm/arch/pxa2xx-gpio.h> | ||
26 | #include <asm/hardware/scoop.h> | 27 | #include <asm/hardware/scoop.h> |
27 | 28 | ||
28 | #define KB_ROWS 8 | 29 | #define KB_ROWS 8 |
diff --git a/drivers/input/keyboard/spitzkbd.c b/drivers/input/keyboard/spitzkbd.c index 1d59a2dc3c17..0be74bfc58fe 100644 --- a/drivers/input/keyboard/spitzkbd.c +++ b/drivers/input/keyboard/spitzkbd.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/arch/spitz.h> | 23 | #include <asm/arch/spitz.h> |
24 | #include <asm/arch/hardware.h> | 24 | #include <asm/arch/hardware.h> |
25 | #include <asm/arch/pxa-regs.h> | 25 | #include <asm/arch/pxa-regs.h> |
26 | #include <asm/arch/pxa2xx-gpio.h> | ||
26 | 27 | ||
27 | #define KB_ROWS 7 | 28 | #define KB_ROWS 7 |
28 | #define KB_COLS 11 | 29 | #define KB_COLS 11 |
diff --git a/drivers/input/touchscreen/corgi_ts.c b/drivers/input/touchscreen/corgi_ts.c index 99d92f5c93d6..a22576779acd 100644 --- a/drivers/input/touchscreen/corgi_ts.c +++ b/drivers/input/touchscreen/corgi_ts.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/arch/sharpsl.h> | 22 | #include <asm/arch/sharpsl.h> |
23 | #include <asm/arch/hardware.h> | 23 | #include <asm/arch/hardware.h> |
24 | #include <asm/arch/pxa-regs.h> | 24 | #include <asm/arch/pxa-regs.h> |
25 | #include <asm/arch/pxa2xx-gpio.h> | ||
25 | 26 | ||
26 | 27 | ||
27 | #define PWR_MODE_ACTIVE 0 | 28 | #define PWR_MODE_ACTIVE 0 |
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index 859814f62cb0..a3a6199639f9 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig | |||
@@ -46,13 +46,6 @@ config LEDS_SPITZ | |||
46 | This option enables support for the LEDs on Sharp Zaurus | 46 | This option enables support for the LEDs on Sharp Zaurus |
47 | SL-Cxx00 series (C1000, C3000, C3100). | 47 | SL-Cxx00 series (C1000, C3000, C3100). |
48 | 48 | ||
49 | config LEDS_TOSA | ||
50 | tristate "LED Support for the Sharp SL-6000 series" | ||
51 | depends on LEDS_CLASS && PXA_SHARPSL | ||
52 | help | ||
53 | This option enables support for the LEDs on Sharp Zaurus | ||
54 | SL-6000 series. | ||
55 | |||
56 | config LEDS_S3C24XX | 49 | config LEDS_S3C24XX |
57 | tristate "LED Support for Samsung S3C24XX GPIO LEDs" | 50 | tristate "LED Support for Samsung S3C24XX GPIO LEDs" |
58 | depends on LEDS_CLASS && ARCH_S3C2410 | 51 | depends on LEDS_CLASS && ARCH_S3C2410 |
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index 84ced3b1a13d..e54f42da21a2 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile | |||
@@ -9,7 +9,6 @@ obj-$(CONFIG_LEDS_ATMEL_PWM) += leds-atmel-pwm.o | |||
9 | obj-$(CONFIG_LEDS_CORGI) += leds-corgi.o | 9 | obj-$(CONFIG_LEDS_CORGI) += leds-corgi.o |
10 | obj-$(CONFIG_LEDS_LOCOMO) += leds-locomo.o | 10 | obj-$(CONFIG_LEDS_LOCOMO) += leds-locomo.o |
11 | obj-$(CONFIG_LEDS_SPITZ) += leds-spitz.o | 11 | obj-$(CONFIG_LEDS_SPITZ) += leds-spitz.o |
12 | obj-$(CONFIG_LEDS_TOSA) += leds-tosa.o | ||
13 | obj-$(CONFIG_LEDS_S3C24XX) += leds-s3c24xx.o | 12 | obj-$(CONFIG_LEDS_S3C24XX) += leds-s3c24xx.o |
14 | obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o | 13 | obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o |
15 | obj-$(CONFIG_LEDS_NET48XX) += leds-net48xx.o | 14 | obj-$(CONFIG_LEDS_NET48XX) += leds-net48xx.o |
diff --git a/drivers/leds/leds-tosa.c b/drivers/leds/leds-tosa.c deleted file mode 100644 index 9e0a188fbb0a..000000000000 --- a/drivers/leds/leds-tosa.c +++ /dev/null | |||
@@ -1,130 +0,0 @@ | |||
1 | /* | ||
2 | * LED Triggers Core | ||
3 | * | ||
4 | * Copyright 2005 Dirk Opfer | ||
5 | * | ||
6 | * Author: Dirk Opfer <Dirk@Opfer-Online.de> | ||
7 | * based on spitz.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/leds.h> | ||
19 | #include <asm/hardware/scoop.h> | ||
20 | #include <asm/mach-types.h> | ||
21 | #include <asm/arch/hardware.h> | ||
22 | #include <asm/arch/pxa-regs.h> | ||
23 | #include <asm/arch/tosa.h> | ||
24 | |||
25 | static void tosaled_amber_set(struct led_classdev *led_cdev, | ||
26 | enum led_brightness value) | ||
27 | { | ||
28 | if (value) | ||
29 | set_scoop_gpio(&tosascoop_jc_device.dev, | ||
30 | TOSA_SCOOP_JC_CHRG_ERR_LED); | ||
31 | else | ||
32 | reset_scoop_gpio(&tosascoop_jc_device.dev, | ||
33 | TOSA_SCOOP_JC_CHRG_ERR_LED); | ||
34 | } | ||
35 | |||
36 | static void tosaled_green_set(struct led_classdev *led_cdev, | ||
37 | enum led_brightness value) | ||
38 | { | ||
39 | if (value) | ||
40 | set_scoop_gpio(&tosascoop_jc_device.dev, | ||
41 | TOSA_SCOOP_JC_NOTE_LED); | ||
42 | else | ||
43 | reset_scoop_gpio(&tosascoop_jc_device.dev, | ||
44 | TOSA_SCOOP_JC_NOTE_LED); | ||
45 | } | ||
46 | |||
47 | static struct led_classdev tosa_amber_led = { | ||
48 | .name = "tosa:amber:charge", | ||
49 | .default_trigger = "sharpsl-charge", | ||
50 | .brightness_set = tosaled_amber_set, | ||
51 | }; | ||
52 | |||
53 | static struct led_classdev tosa_green_led = { | ||
54 | .name = "tosa:green:mail", | ||
55 | .default_trigger = "nand-disk", | ||
56 | .brightness_set = tosaled_green_set, | ||
57 | }; | ||
58 | |||
59 | #ifdef CONFIG_PM | ||
60 | static int tosaled_suspend(struct platform_device *dev, pm_message_t state) | ||
61 | { | ||
62 | #ifdef CONFIG_LEDS_TRIGGERS | ||
63 | if (tosa_amber_led.trigger && strcmp(tosa_amber_led.trigger->name, | ||
64 | "sharpsl-charge")) | ||
65 | #endif | ||
66 | led_classdev_suspend(&tosa_amber_led); | ||
67 | led_classdev_suspend(&tosa_green_led); | ||
68 | return 0; | ||
69 | } | ||
70 | |||
71 | static int tosaled_resume(struct platform_device *dev) | ||
72 | { | ||
73 | led_classdev_resume(&tosa_amber_led); | ||
74 | led_classdev_resume(&tosa_green_led); | ||
75 | return 0; | ||
76 | } | ||
77 | #else | ||
78 | #define tosaled_suspend NULL | ||
79 | #define tosaled_resume NULL | ||
80 | #endif | ||
81 | |||
82 | static int tosaled_probe(struct platform_device *pdev) | ||
83 | { | ||
84 | int ret; | ||
85 | |||
86 | ret = led_classdev_register(&pdev->dev, &tosa_amber_led); | ||
87 | if (ret < 0) | ||
88 | return ret; | ||
89 | |||
90 | ret = led_classdev_register(&pdev->dev, &tosa_green_led); | ||
91 | if (ret < 0) | ||
92 | led_classdev_unregister(&tosa_amber_led); | ||
93 | |||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | static int tosaled_remove(struct platform_device *pdev) | ||
98 | { | ||
99 | led_classdev_unregister(&tosa_amber_led); | ||
100 | led_classdev_unregister(&tosa_green_led); | ||
101 | |||
102 | return 0; | ||
103 | } | ||
104 | |||
105 | static struct platform_driver tosaled_driver = { | ||
106 | .probe = tosaled_probe, | ||
107 | .remove = tosaled_remove, | ||
108 | .suspend = tosaled_suspend, | ||
109 | .resume = tosaled_resume, | ||
110 | .driver = { | ||
111 | .name = "tosa-led", | ||
112 | }, | ||
113 | }; | ||
114 | |||
115 | static int __init tosaled_init(void) | ||
116 | { | ||
117 | return platform_driver_register(&tosaled_driver); | ||
118 | } | ||
119 | |||
120 | static void __exit tosaled_exit(void) | ||
121 | { | ||
122 | platform_driver_unregister(&tosaled_driver); | ||
123 | } | ||
124 | |||
125 | module_init(tosaled_init); | ||
126 | module_exit(tosaled_exit); | ||
127 | |||
128 | MODULE_AUTHOR("Dirk Opfer <Dirk@Opfer-Online.de>"); | ||
129 | MODULE_DESCRIPTION("Tosa LED driver"); | ||
130 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 0c886c882385..2566479937c9 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
@@ -22,6 +22,22 @@ config MFD_ASIC3 | |||
22 | This driver supports the ASIC3 multifunction chip found on many | 22 | This driver supports the ASIC3 multifunction chip found on many |
23 | PDAs (mainly iPAQ and HTC based ones) | 23 | PDAs (mainly iPAQ and HTC based ones) |
24 | 24 | ||
25 | config HTC_EGPIO | ||
26 | bool "HTC EGPIO support" | ||
27 | depends on GENERIC_HARDIRQS && HAVE_GPIO_LIB | ||
28 | help | ||
29 | This driver supports the CPLD egpio chip present on | ||
30 | several HTC phones. It provides basic support for input | ||
31 | pins, output pins, and irqs. | ||
32 | |||
33 | config HTC_PASIC3 | ||
34 | tristate "HTC PASIC3 LED/DS1WM chip support" | ||
35 | help | ||
36 | This core driver provides register access for the LED/DS1WM | ||
37 | chips labeled "AIC2" and "AIC3", found on HTC Blueangel and | ||
38 | HTC Magician devices, respectively. Actual functionality is | ||
39 | handled by the leds-pasic3 and ds1wm drivers. | ||
40 | |||
25 | endmenu | 41 | endmenu |
26 | 42 | ||
27 | menu "Multimedia Capabilities Port drivers" | 43 | menu "Multimedia Capabilities Port drivers" |
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 521cd5cb68af..eef4e26807df 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile | |||
@@ -5,6 +5,9 @@ | |||
5 | obj-$(CONFIG_MFD_SM501) += sm501.o | 5 | obj-$(CONFIG_MFD_SM501) += sm501.o |
6 | obj-$(CONFIG_MFD_ASIC3) += asic3.o | 6 | obj-$(CONFIG_MFD_ASIC3) += asic3.o |
7 | 7 | ||
8 | obj-$(CONFIG_HTC_EGPIO) += htc-egpio.o | ||
9 | obj-$(CONFIG_HTC_PASIC3) += htc-pasic3.o | ||
10 | |||
8 | obj-$(CONFIG_MCP) += mcp-core.o | 11 | obj-$(CONFIG_MCP) += mcp-core.o |
9 | obj-$(CONFIG_MCP_SA11X0) += mcp-sa11x0.o | 12 | obj-$(CONFIG_MCP_SA11X0) += mcp-sa11x0.o |
10 | obj-$(CONFIG_MCP_UCB1200) += ucb1x00-core.o | 13 | obj-$(CONFIG_MCP_UCB1200) += ucb1x00-core.o |
diff --git a/drivers/mfd/htc-egpio.c b/drivers/mfd/htc-egpio.c new file mode 100644 index 000000000000..8872cc077519 --- /dev/null +++ b/drivers/mfd/htc-egpio.c | |||
@@ -0,0 +1,440 @@ | |||
1 | /* | ||
2 | * Support for the GPIO/IRQ expander chips present on several HTC phones. | ||
3 | * These are implemented in CPLD chips present on the board. | ||
4 | * | ||
5 | * Copyright (c) 2007 Kevin O'Connor <kevin@koconnor.net> | ||
6 | * Copyright (c) 2007 Philipp Zabel <philipp.zabel@gmail.com> | ||
7 | * | ||
8 | * This file may be distributed under the terms of the GNU GPL license. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/irq.h> | ||
15 | #include <linux/io.h> | ||
16 | #include <linux/spinlock.h> | ||
17 | #include <linux/platform_device.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/mfd/htc-egpio.h> | ||
20 | |||
21 | struct egpio_chip { | ||
22 | int reg_start; | ||
23 | int cached_values; | ||
24 | unsigned long is_out; | ||
25 | struct device *dev; | ||
26 | struct gpio_chip chip; | ||
27 | }; | ||
28 | |||
29 | struct egpio_info { | ||
30 | spinlock_t lock; | ||
31 | |||
32 | /* iomem info */ | ||
33 | void __iomem *base_addr; | ||
34 | int bus_shift; /* byte shift */ | ||
35 | int reg_shift; /* bit shift */ | ||
36 | int reg_mask; | ||
37 | |||
38 | /* irq info */ | ||
39 | int ack_register; | ||
40 | int ack_write; | ||
41 | u16 irqs_enabled; | ||
42 | uint irq_start; | ||
43 | int nirqs; | ||
44 | uint chained_irq; | ||
45 | |||
46 | /* egpio info */ | ||
47 | struct egpio_chip *chip; | ||
48 | int nchips; | ||
49 | }; | ||
50 | |||
51 | static inline void egpio_writew(u16 value, struct egpio_info *ei, int reg) | ||
52 | { | ||
53 | writew(value, ei->base_addr + (reg << ei->bus_shift)); | ||
54 | } | ||
55 | |||
56 | static inline u16 egpio_readw(struct egpio_info *ei, int reg) | ||
57 | { | ||
58 | return readw(ei->base_addr + (reg << ei->bus_shift)); | ||
59 | } | ||
60 | |||
61 | /* | ||
62 | * IRQs | ||
63 | */ | ||
64 | |||
65 | static inline void ack_irqs(struct egpio_info *ei) | ||
66 | { | ||
67 | egpio_writew(ei->ack_write, ei, ei->ack_register); | ||
68 | pr_debug("EGPIO ack - write %x to base+%x\n", | ||
69 | ei->ack_write, ei->ack_register << ei->bus_shift); | ||
70 | } | ||
71 | |||
72 | static void egpio_ack(unsigned int irq) | ||
73 | { | ||
74 | } | ||
75 | |||
76 | /* There does not appear to be a way to proactively mask interrupts | ||
77 | * on the egpio chip itself. So, we simply ignore interrupts that | ||
78 | * aren't desired. */ | ||
79 | static void egpio_mask(unsigned int irq) | ||
80 | { | ||
81 | struct egpio_info *ei = get_irq_chip_data(irq); | ||
82 | ei->irqs_enabled &= ~(1 << (irq - ei->irq_start)); | ||
83 | pr_debug("EGPIO mask %d %04x\n", irq, ei->irqs_enabled); | ||
84 | } | ||
85 | static void egpio_unmask(unsigned int irq) | ||
86 | { | ||
87 | struct egpio_info *ei = get_irq_chip_data(irq); | ||
88 | ei->irqs_enabled |= 1 << (irq - ei->irq_start); | ||
89 | pr_debug("EGPIO unmask %d %04x\n", irq, ei->irqs_enabled); | ||
90 | } | ||
91 | |||
92 | static struct irq_chip egpio_muxed_chip = { | ||
93 | .name = "htc-egpio", | ||
94 | .ack = egpio_ack, | ||
95 | .mask = egpio_mask, | ||
96 | .unmask = egpio_unmask, | ||
97 | }; | ||
98 | |||
99 | static void egpio_handler(unsigned int irq, struct irq_desc *desc) | ||
100 | { | ||
101 | struct egpio_info *ei = get_irq_data(irq); | ||
102 | int irqpin; | ||
103 | |||
104 | /* Read current pins. */ | ||
105 | unsigned long readval = egpio_readw(ei, ei->ack_register); | ||
106 | pr_debug("IRQ reg: %x\n", (unsigned int)readval); | ||
107 | /* Ack/unmask interrupts. */ | ||
108 | ack_irqs(ei); | ||
109 | /* Process all set pins. */ | ||
110 | readval &= ei->irqs_enabled; | ||
111 | for_each_bit(irqpin, &readval, ei->nirqs) { | ||
112 | /* Run irq handler */ | ||
113 | pr_debug("got IRQ %d\n", irqpin); | ||
114 | irq = ei->irq_start + irqpin; | ||
115 | desc = &irq_desc[irq]; | ||
116 | desc->handle_irq(irq, desc); | ||
117 | } | ||
118 | } | ||
119 | |||
120 | int htc_egpio_get_wakeup_irq(struct device *dev) | ||
121 | { | ||
122 | struct egpio_info *ei = dev_get_drvdata(dev); | ||
123 | |||
124 | /* Read current pins. */ | ||
125 | u16 readval = egpio_readw(ei, ei->ack_register); | ||
126 | /* Ack/unmask interrupts. */ | ||
127 | ack_irqs(ei); | ||
128 | /* Return first set pin. */ | ||
129 | readval &= ei->irqs_enabled; | ||
130 | return ei->irq_start + ffs(readval) - 1; | ||
131 | } | ||
132 | EXPORT_SYMBOL(htc_egpio_get_wakeup_irq); | ||
133 | |||
134 | static inline int egpio_pos(struct egpio_info *ei, int bit) | ||
135 | { | ||
136 | return bit >> ei->reg_shift; | ||
137 | } | ||
138 | |||
139 | static inline int egpio_bit(struct egpio_info *ei, int bit) | ||
140 | { | ||
141 | return 1 << (bit & ((1 << ei->reg_shift)-1)); | ||
142 | } | ||
143 | |||
144 | /* | ||
145 | * Input pins | ||
146 | */ | ||
147 | |||
148 | static int egpio_get(struct gpio_chip *chip, unsigned offset) | ||
149 | { | ||
150 | struct egpio_chip *egpio; | ||
151 | struct egpio_info *ei; | ||
152 | unsigned bit; | ||
153 | int reg; | ||
154 | int value; | ||
155 | |||
156 | pr_debug("egpio_get_value(%d)\n", chip->base + offset); | ||
157 | |||
158 | egpio = container_of(chip, struct egpio_chip, chip); | ||
159 | ei = dev_get_drvdata(egpio->dev); | ||
160 | bit = egpio_bit(ei, offset); | ||
161 | reg = egpio->reg_start + egpio_pos(ei, offset); | ||
162 | |||
163 | value = egpio_readw(ei, reg); | ||
164 | pr_debug("readw(%p + %x) = %x\n", | ||
165 | ei->base_addr, reg << ei->bus_shift, value); | ||
166 | return value & bit; | ||
167 | } | ||
168 | |||
169 | static int egpio_direction_input(struct gpio_chip *chip, unsigned offset) | ||
170 | { | ||
171 | struct egpio_chip *egpio; | ||
172 | |||
173 | egpio = container_of(chip, struct egpio_chip, chip); | ||
174 | return test_bit(offset, &egpio->is_out) ? -EINVAL : 0; | ||
175 | } | ||
176 | |||
177 | |||
178 | /* | ||
179 | * Output pins | ||
180 | */ | ||
181 | |||
182 | static void egpio_set(struct gpio_chip *chip, unsigned offset, int value) | ||
183 | { | ||
184 | unsigned long flag; | ||
185 | struct egpio_chip *egpio; | ||
186 | struct egpio_info *ei; | ||
187 | unsigned bit; | ||
188 | int pos; | ||
189 | int reg; | ||
190 | int shift; | ||
191 | |||
192 | pr_debug("egpio_set(%s, %d(%d), %d)\n", | ||
193 | chip->label, offset, offset+chip->base, value); | ||
194 | |||
195 | egpio = container_of(chip, struct egpio_chip, chip); | ||
196 | ei = dev_get_drvdata(egpio->dev); | ||
197 | bit = egpio_bit(ei, offset); | ||
198 | pos = egpio_pos(ei, offset); | ||
199 | reg = egpio->reg_start + pos; | ||
200 | shift = pos << ei->reg_shift; | ||
201 | |||
202 | pr_debug("egpio %s: reg %d = 0x%04x\n", value ? "set" : "clear", | ||
203 | reg, (egpio->cached_values >> shift) & ei->reg_mask); | ||
204 | |||
205 | spin_lock_irqsave(&ei->lock, flag); | ||
206 | if (value) | ||
207 | egpio->cached_values |= (1 << offset); | ||
208 | else | ||
209 | egpio->cached_values &= ~(1 << offset); | ||
210 | egpio_writew((egpio->cached_values >> shift) & ei->reg_mask, ei, reg); | ||
211 | spin_unlock_irqrestore(&ei->lock, flag); | ||
212 | } | ||
213 | |||
214 | static int egpio_direction_output(struct gpio_chip *chip, | ||
215 | unsigned offset, int value) | ||
216 | { | ||
217 | struct egpio_chip *egpio; | ||
218 | |||
219 | egpio = container_of(chip, struct egpio_chip, chip); | ||
220 | if (test_bit(offset, &egpio->is_out)) { | ||
221 | egpio_set(chip, offset, value); | ||
222 | return 0; | ||
223 | } else { | ||
224 | return -EINVAL; | ||
225 | } | ||
226 | } | ||
227 | |||
228 | static void egpio_write_cache(struct egpio_info *ei) | ||
229 | { | ||
230 | int i; | ||
231 | struct egpio_chip *egpio; | ||
232 | int shift; | ||
233 | |||
234 | for (i = 0; i < ei->nchips; i++) { | ||
235 | egpio = &(ei->chip[i]); | ||
236 | if (!egpio->is_out) | ||
237 | continue; | ||
238 | |||
239 | for (shift = 0; shift < egpio->chip.ngpio; | ||
240 | shift += (1<<ei->reg_shift)) { | ||
241 | |||
242 | int reg = egpio->reg_start + egpio_pos(ei, shift); | ||
243 | |||
244 | if (!((egpio->is_out >> shift) & ei->reg_mask)) | ||
245 | continue; | ||
246 | |||
247 | pr_debug("EGPIO: setting %x to %x, was %x\n", reg, | ||
248 | (egpio->cached_values >> shift) & ei->reg_mask, | ||
249 | egpio_readw(ei, reg)); | ||
250 | |||
251 | egpio_writew((egpio->cached_values >> shift) | ||
252 | & ei->reg_mask, ei, reg); | ||
253 | } | ||
254 | } | ||
255 | } | ||
256 | |||
257 | |||
258 | /* | ||
259 | * Setup | ||
260 | */ | ||
261 | |||
262 | static int __init egpio_probe(struct platform_device *pdev) | ||
263 | { | ||
264 | struct htc_egpio_platform_data *pdata = pdev->dev.platform_data; | ||
265 | struct resource *res; | ||
266 | struct egpio_info *ei; | ||
267 | struct gpio_chip *chip; | ||
268 | unsigned int irq, irq_end; | ||
269 | int i; | ||
270 | int ret; | ||
271 | |||
272 | /* Initialize ei data structure. */ | ||
273 | ei = kzalloc(sizeof(*ei), GFP_KERNEL); | ||
274 | if (!ei) | ||
275 | return -ENOMEM; | ||
276 | |||
277 | spin_lock_init(&ei->lock); | ||
278 | |||
279 | /* Find chained irq */ | ||
280 | ret = -EINVAL; | ||
281 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | ||
282 | if (res) | ||
283 | ei->chained_irq = res->start; | ||
284 | |||
285 | /* Map egpio chip into virtual address space. */ | ||
286 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
287 | if (!res) | ||
288 | goto fail; | ||
289 | ei->base_addr = ioremap_nocache(res->start, res->end - res->start); | ||
290 | if (!ei->base_addr) | ||
291 | goto fail; | ||
292 | pr_debug("EGPIO phys=%08x virt=%p\n", res->start, ei->base_addr); | ||
293 | |||
294 | if ((pdata->bus_width != 16) && (pdata->bus_width != 32)) | ||
295 | goto fail; | ||
296 | ei->bus_shift = fls(pdata->bus_width - 1) - 3; | ||
297 | pr_debug("bus_shift = %d\n", ei->bus_shift); | ||
298 | |||
299 | if ((pdata->reg_width != 8) && (pdata->reg_width != 16)) | ||
300 | goto fail; | ||
301 | ei->reg_shift = fls(pdata->reg_width - 1); | ||
302 | pr_debug("reg_shift = %d\n", ei->reg_shift); | ||
303 | |||
304 | ei->reg_mask = (1 << pdata->reg_width) - 1; | ||
305 | |||
306 | platform_set_drvdata(pdev, ei); | ||
307 | |||
308 | ei->nchips = pdata->num_chips; | ||
309 | ei->chip = kzalloc(sizeof(struct egpio_chip) * ei->nchips, GFP_KERNEL); | ||
310 | if (!ei) { | ||
311 | ret = -ENOMEM; | ||
312 | goto fail; | ||
313 | } | ||
314 | for (i = 0; i < ei->nchips; i++) { | ||
315 | ei->chip[i].reg_start = pdata->chip[i].reg_start; | ||
316 | ei->chip[i].cached_values = pdata->chip[i].initial_values; | ||
317 | ei->chip[i].is_out = pdata->chip[i].direction; | ||
318 | ei->chip[i].dev = &(pdev->dev); | ||
319 | chip = &(ei->chip[i].chip); | ||
320 | chip->label = "htc-egpio"; | ||
321 | chip->get = egpio_get; | ||
322 | chip->set = egpio_set; | ||
323 | chip->direction_input = egpio_direction_input; | ||
324 | chip->direction_output = egpio_direction_output; | ||
325 | chip->base = pdata->chip[i].gpio_base; | ||
326 | chip->ngpio = pdata->chip[i].num_gpios; | ||
327 | |||
328 | gpiochip_add(chip); | ||
329 | } | ||
330 | |||
331 | /* Set initial pin values */ | ||
332 | egpio_write_cache(ei); | ||
333 | |||
334 | ei->irq_start = pdata->irq_base; | ||
335 | ei->nirqs = pdata->num_irqs; | ||
336 | ei->ack_register = pdata->ack_register; | ||
337 | |||
338 | if (ei->chained_irq) { | ||
339 | /* Setup irq handlers */ | ||
340 | ei->ack_write = 0xFFFF; | ||
341 | if (pdata->invert_acks) | ||
342 | ei->ack_write = 0; | ||
343 | irq_end = ei->irq_start + ei->nirqs; | ||
344 | for (irq = ei->irq_start; irq < irq_end; irq++) { | ||
345 | set_irq_chip(irq, &egpio_muxed_chip); | ||
346 | set_irq_chip_data(irq, ei); | ||
347 | set_irq_handler(irq, handle_simple_irq); | ||
348 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); | ||
349 | } | ||
350 | set_irq_type(ei->chained_irq, IRQ_TYPE_EDGE_RISING); | ||
351 | set_irq_data(ei->chained_irq, ei); | ||
352 | set_irq_chained_handler(ei->chained_irq, egpio_handler); | ||
353 | ack_irqs(ei); | ||
354 | |||
355 | device_init_wakeup(&pdev->dev, 1); | ||
356 | } | ||
357 | |||
358 | return 0; | ||
359 | |||
360 | fail: | ||
361 | printk(KERN_ERR "EGPIO failed to setup\n"); | ||
362 | kfree(ei); | ||
363 | return ret; | ||
364 | } | ||
365 | |||
366 | static int __exit egpio_remove(struct platform_device *pdev) | ||
367 | { | ||
368 | struct egpio_info *ei = platform_get_drvdata(pdev); | ||
369 | unsigned int irq, irq_end; | ||
370 | |||
371 | if (ei->chained_irq) { | ||
372 | irq_end = ei->irq_start + ei->nirqs; | ||
373 | for (irq = ei->irq_start; irq < irq_end; irq++) { | ||
374 | set_irq_chip(irq, NULL); | ||
375 | set_irq_handler(irq, NULL); | ||
376 | set_irq_flags(irq, 0); | ||
377 | } | ||
378 | set_irq_chained_handler(ei->chained_irq, NULL); | ||
379 | device_init_wakeup(&pdev->dev, 0); | ||
380 | } | ||
381 | iounmap(ei->base_addr); | ||
382 | kfree(ei->chip); | ||
383 | kfree(ei); | ||
384 | |||
385 | return 0; | ||
386 | } | ||
387 | |||
388 | #ifdef CONFIG_PM | ||
389 | static int egpio_suspend(struct platform_device *pdev, pm_message_t state) | ||
390 | { | ||
391 | struct egpio_info *ei = platform_get_drvdata(pdev); | ||
392 | |||
393 | if (ei->chained_irq && device_may_wakeup(&pdev->dev)) | ||
394 | enable_irq_wake(ei->chained_irq); | ||
395 | return 0; | ||
396 | } | ||
397 | |||
398 | static int egpio_resume(struct platform_device *pdev) | ||
399 | { | ||
400 | struct egpio_info *ei = platform_get_drvdata(pdev); | ||
401 | |||
402 | if (ei->chained_irq && device_may_wakeup(&pdev->dev)) | ||
403 | disable_irq_wake(ei->chained_irq); | ||
404 | |||
405 | /* Update registers from the cache, in case | ||
406 | the CPLD was powered off during suspend */ | ||
407 | egpio_write_cache(ei); | ||
408 | return 0; | ||
409 | } | ||
410 | #else | ||
411 | #define egpio_suspend NULL | ||
412 | #define egpio_resume NULL | ||
413 | #endif | ||
414 | |||
415 | |||
416 | static struct platform_driver egpio_driver = { | ||
417 | .driver = { | ||
418 | .name = "htc-egpio", | ||
419 | }, | ||
420 | .remove = __exit_p(egpio_remove), | ||
421 | .suspend = egpio_suspend, | ||
422 | .resume = egpio_resume, | ||
423 | }; | ||
424 | |||
425 | static int __init egpio_init(void) | ||
426 | { | ||
427 | return platform_driver_probe(&egpio_driver, egpio_probe); | ||
428 | } | ||
429 | |||
430 | static void __exit egpio_exit(void) | ||
431 | { | ||
432 | platform_driver_unregister(&egpio_driver); | ||
433 | } | ||
434 | |||
435 | /* start early for dependencies */ | ||
436 | subsys_initcall(egpio_init); | ||
437 | module_exit(egpio_exit) | ||
438 | |||
439 | MODULE_LICENSE("GPL"); | ||
440 | MODULE_AUTHOR("Kevin O'Connor <kevin@koconnor.net>"); | ||
diff --git a/drivers/mfd/htc-pasic3.c b/drivers/mfd/htc-pasic3.c new file mode 100644 index 000000000000..af66f4f28300 --- /dev/null +++ b/drivers/mfd/htc-pasic3.c | |||
@@ -0,0 +1,265 @@ | |||
1 | /* | ||
2 | * Core driver for HTC PASIC3 LED/DS1WM chip. | ||
3 | * | ||
4 | * Copyright (C) 2006 Philipp Zabel <philipp.zabel@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; version 2 of the License. | ||
9 | */ | ||
10 | |||
11 | #include <linux/init.h> | ||
12 | #include <linux/module.h> | ||
13 | #include <linux/platform_device.h> | ||
14 | |||
15 | #include <linux/ds1wm.h> | ||
16 | #include <linux/gpio.h> | ||
17 | #include <linux/io.h> | ||
18 | #include <linux/irq.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | #include <linux/mfd/htc-pasic3.h> | ||
21 | |||
22 | #include <asm/arch/pxa-regs.h> | ||
23 | |||
24 | struct pasic3_data { | ||
25 | void __iomem *mapping; | ||
26 | unsigned int bus_shift; | ||
27 | struct platform_device *ds1wm_pdev; | ||
28 | struct platform_device *led_pdev; | ||
29 | }; | ||
30 | |||
31 | #define REG_ADDR 5 | ||
32 | #define REG_DATA 6 | ||
33 | #define NUM_REGS 7 | ||
34 | |||
35 | #define READ_MODE 0x80 | ||
36 | |||
37 | /* | ||
38 | * write to a secondary register on the PASIC3 | ||
39 | */ | ||
40 | void pasic3_write_register(struct device *dev, u32 reg, u8 val) | ||
41 | { | ||
42 | struct pasic3_data *asic = dev->driver_data; | ||
43 | int bus_shift = asic->bus_shift; | ||
44 | void __iomem *addr = asic->mapping + (REG_ADDR << bus_shift); | ||
45 | void __iomem *data = asic->mapping + (REG_DATA << bus_shift); | ||
46 | |||
47 | __raw_writeb(~READ_MODE & reg, addr); | ||
48 | __raw_writeb(val, data); | ||
49 | } | ||
50 | EXPORT_SYMBOL(pasic3_write_register); /* for leds-pasic3 */ | ||
51 | |||
52 | /* | ||
53 | * read from a secondary register on the PASIC3 | ||
54 | */ | ||
55 | u8 pasic3_read_register(struct device *dev, u32 reg) | ||
56 | { | ||
57 | struct pasic3_data *asic = dev->driver_data; | ||
58 | int bus_shift = asic->bus_shift; | ||
59 | void __iomem *addr = asic->mapping + (REG_ADDR << bus_shift); | ||
60 | void __iomem *data = asic->mapping + (REG_DATA << bus_shift); | ||
61 | |||
62 | __raw_writeb(READ_MODE | reg, addr); | ||
63 | return __raw_readb(data); | ||
64 | } | ||
65 | EXPORT_SYMBOL(pasic3_read_register); /* for leds-pasic3 */ | ||
66 | |||
67 | /* | ||
68 | * LEDs | ||
69 | */ | ||
70 | |||
71 | static int led_device_add(struct device *pasic3_dev, | ||
72 | const struct pasic3_leds_machinfo *pdata) | ||
73 | { | ||
74 | struct pasic3_data *asic = pasic3_dev->driver_data; | ||
75 | struct platform_device *pdev; | ||
76 | int ret; | ||
77 | |||
78 | pdev = platform_device_alloc("pasic3-led", -1); | ||
79 | if (!pdev) { | ||
80 | dev_dbg(pasic3_dev, "failed to allocate LED platform device\n"); | ||
81 | return -ENOMEM; | ||
82 | } | ||
83 | |||
84 | ret = platform_device_add_data(pdev, pdata, | ||
85 | sizeof(struct pasic3_leds_machinfo)); | ||
86 | if (ret < 0) { | ||
87 | dev_dbg(pasic3_dev, "failed to add LED platform data\n"); | ||
88 | goto exit_pdev_put; | ||
89 | } | ||
90 | |||
91 | pdev->dev.parent = pasic3_dev; | ||
92 | ret = platform_device_add(pdev); | ||
93 | if (ret < 0) { | ||
94 | dev_dbg(pasic3_dev, "failed to add LED platform device\n"); | ||
95 | goto exit_pdev_put; | ||
96 | } | ||
97 | |||
98 | asic->led_pdev = pdev; | ||
99 | return 0; | ||
100 | |||
101 | exit_pdev_put: | ||
102 | platform_device_put(pdev); | ||
103 | return ret; | ||
104 | } | ||
105 | |||
106 | /* | ||
107 | * DS1WM | ||
108 | */ | ||
109 | |||
110 | static void ds1wm_enable(struct platform_device *pdev) | ||
111 | { | ||
112 | struct device *dev = pdev->dev.parent; | ||
113 | int c; | ||
114 | |||
115 | c = pasic3_read_register(dev, 0x28); | ||
116 | pasic3_write_register(dev, 0x28, c & 0x7f); | ||
117 | |||
118 | dev_dbg(dev, "DS1WM OWM_EN low (active) %02x\n", c & 0x7f); | ||
119 | } | ||
120 | |||
121 | static void ds1wm_disable(struct platform_device *pdev) | ||
122 | { | ||
123 | struct device *dev = pdev->dev.parent; | ||
124 | int c; | ||
125 | |||
126 | c = pasic3_read_register(dev, 0x28); | ||
127 | pasic3_write_register(dev, 0x28, c | 0x80); | ||
128 | |||
129 | dev_dbg(dev, "DS1WM OWM_EN high (inactive) %02x\n", c | 0x80); | ||
130 | } | ||
131 | |||
132 | static struct ds1wm_platform_data ds1wm_pdata = { | ||
133 | .bus_shift = 2, | ||
134 | .enable = ds1wm_enable, | ||
135 | .disable = ds1wm_disable, | ||
136 | }; | ||
137 | |||
138 | static int ds1wm_device_add(struct device *pasic3_dev, int bus_shift) | ||
139 | { | ||
140 | struct pasic3_data *asic = pasic3_dev->driver_data; | ||
141 | struct platform_device *pdev; | ||
142 | int ret; | ||
143 | |||
144 | pdev = platform_device_alloc("ds1wm", -1); | ||
145 | if (!pdev) { | ||
146 | dev_dbg(pasic3_dev, "failed to allocate DS1WM platform device\n"); | ||
147 | return -ENOMEM; | ||
148 | } | ||
149 | |||
150 | ret = platform_device_add_resources(pdev, pdev->resource, | ||
151 | pdev->num_resources); | ||
152 | if (ret < 0) { | ||
153 | dev_dbg(pasic3_dev, "failed to add DS1WM resources\n"); | ||
154 | goto exit_pdev_put; | ||
155 | } | ||
156 | |||
157 | ds1wm_pdata.bus_shift = asic->bus_shift; | ||
158 | ret = platform_device_add_data(pdev, &ds1wm_pdata, | ||
159 | sizeof(struct ds1wm_platform_data)); | ||
160 | if (ret < 0) { | ||
161 | dev_dbg(pasic3_dev, "failed to add DS1WM platform data\n"); | ||
162 | goto exit_pdev_put; | ||
163 | } | ||
164 | |||
165 | pdev->dev.parent = pasic3_dev; | ||
166 | ret = platform_device_add(pdev); | ||
167 | if (ret < 0) { | ||
168 | dev_dbg(pasic3_dev, "failed to add DS1WM platform device\n"); | ||
169 | goto exit_pdev_put; | ||
170 | } | ||
171 | |||
172 | asic->ds1wm_pdev = pdev; | ||
173 | return 0; | ||
174 | |||
175 | exit_pdev_put: | ||
176 | platform_device_put(pdev); | ||
177 | return ret; | ||
178 | } | ||
179 | |||
180 | static int __init pasic3_probe(struct platform_device *pdev) | ||
181 | { | ||
182 | struct pasic3_platform_data *pdata = pdev->dev.platform_data; | ||
183 | struct device *dev = &pdev->dev; | ||
184 | struct pasic3_data *asic; | ||
185 | struct resource *r; | ||
186 | int ret; | ||
187 | |||
188 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
189 | if (!r) | ||
190 | return -ENXIO; | ||
191 | |||
192 | if (!request_mem_region(r->start, r->end - r->start + 1, "pasic3")) | ||
193 | return -EBUSY; | ||
194 | |||
195 | asic = kzalloc(sizeof(struct pasic3_data), GFP_KERNEL); | ||
196 | if (!asic) | ||
197 | return -ENOMEM; | ||
198 | |||
199 | platform_set_drvdata(pdev, asic); | ||
200 | |||
201 | if (pdata && pdata->bus_shift) | ||
202 | asic->bus_shift = pdata->bus_shift; | ||
203 | else | ||
204 | asic->bus_shift = 2; | ||
205 | |||
206 | asic->mapping = ioremap(r->start, r->end - r->start + 1); | ||
207 | if (!asic->mapping) { | ||
208 | dev_err(dev, "couldn't ioremap PASIC3\n"); | ||
209 | kfree(asic); | ||
210 | return -ENOMEM; | ||
211 | } | ||
212 | |||
213 | ret = ds1wm_device_add(dev, asic->bus_shift); | ||
214 | if (ret < 0) | ||
215 | dev_warn(dev, "failed to register DS1WM\n"); | ||
216 | |||
217 | if (pdata->led_pdata) { | ||
218 | ret = led_device_add(dev, pdata->led_pdata); | ||
219 | if (ret < 0) | ||
220 | dev_warn(dev, "failed to register LED device\n"); | ||
221 | } | ||
222 | |||
223 | return 0; | ||
224 | } | ||
225 | |||
226 | static int pasic3_remove(struct platform_device *pdev) | ||
227 | { | ||
228 | struct pasic3_data *asic = platform_get_drvdata(pdev); | ||
229 | struct resource *r; | ||
230 | |||
231 | if (asic->led_pdev) | ||
232 | platform_device_unregister(asic->led_pdev); | ||
233 | if (asic->ds1wm_pdev) | ||
234 | platform_device_unregister(asic->ds1wm_pdev); | ||
235 | |||
236 | iounmap(asic->mapping); | ||
237 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
238 | release_mem_region(r->start, r->end - r->start + 1); | ||
239 | kfree(asic); | ||
240 | return 0; | ||
241 | } | ||
242 | |||
243 | static struct platform_driver pasic3_driver = { | ||
244 | .driver = { | ||
245 | .name = "pasic3", | ||
246 | }, | ||
247 | .remove = pasic3_remove, | ||
248 | }; | ||
249 | |||
250 | static int __init pasic3_base_init(void) | ||
251 | { | ||
252 | return platform_driver_probe(&pasic3_driver, pasic3_probe); | ||
253 | } | ||
254 | |||
255 | static void __exit pasic3_base_exit(void) | ||
256 | { | ||
257 | platform_driver_unregister(&pasic3_driver); | ||
258 | } | ||
259 | |||
260 | module_init(pasic3_base_init); | ||
261 | module_exit(pasic3_base_exit); | ||
262 | |||
263 | MODULE_AUTHOR("Philipp Zabel <philipp.zabel@gmail.com>"); | ||
264 | MODULE_DESCRIPTION("Core driver for HTC PASIC3"); | ||
265 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig index 4a3c6759492b..959fb86cda01 100644 --- a/drivers/mtd/nand/Kconfig +++ b/drivers/mtd/nand/Kconfig | |||
@@ -314,7 +314,7 @@ config MTD_ALAUDA | |||
314 | 314 | ||
315 | config MTD_NAND_ORION | 315 | config MTD_NAND_ORION |
316 | tristate "NAND Flash support for Marvell Orion SoC" | 316 | tristate "NAND Flash support for Marvell Orion SoC" |
317 | depends on ARCH_ORION && MTD_NAND | 317 | depends on PLAT_ORION && MTD_NAND |
318 | help | 318 | help |
319 | This enables the NAND flash controller on Orion machines. | 319 | This enables the NAND flash controller on Orion machines. |
320 | 320 | ||
diff --git a/drivers/mtd/nand/orion_nand.c b/drivers/mtd/nand/orion_nand.c index 9162cca0182b..ec5ad28b237e 100644 --- a/drivers/mtd/nand/orion_nand.c +++ b/drivers/mtd/nand/orion_nand.c | |||
@@ -18,8 +18,8 @@ | |||
18 | #include <linux/mtd/partitions.h> | 18 | #include <linux/mtd/partitions.h> |
19 | #include <asm/io.h> | 19 | #include <asm/io.h> |
20 | #include <asm/sizes.h> | 20 | #include <asm/sizes.h> |
21 | #include <asm/arch/platform.h> | ||
22 | #include <asm/arch/hardware.h> | 21 | #include <asm/arch/hardware.h> |
22 | #include <asm/plat-orion/orion_nand.h> | ||
23 | 23 | ||
24 | #ifdef CONFIG_MTD_CMDLINE_PARTS | 24 | #ifdef CONFIG_MTD_CMDLINE_PARTS |
25 | static const char *part_probes[] = { "cmdlinepart", NULL }; | 25 | static const char *part_probes[] = { "cmdlinepart", NULL }; |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index fe7b5ec09708..124d29f5fa0c 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -2415,7 +2415,7 @@ config UGETH_TX_ON_DEMAND | |||
2415 | 2415 | ||
2416 | config MV643XX_ETH | 2416 | config MV643XX_ETH |
2417 | tristate "Marvell Discovery (643XX) and Orion ethernet support" | 2417 | tristate "Marvell Discovery (643XX) and Orion ethernet support" |
2418 | depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32) || ARCH_ORION | 2418 | depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32) || PLAT_ORION |
2419 | select MII | 2419 | select MII |
2420 | help | 2420 | help |
2421 | This driver supports the gigabit ethernet MACs in the | 2421 | This driver supports the gigabit ethernet MACs in the |
diff --git a/drivers/net/irda/pxaficp_ir.c b/drivers/net/irda/pxaficp_ir.c index 8c09344f58dc..8db71ab20456 100644 --- a/drivers/net/irda/pxaficp_ir.c +++ b/drivers/net/irda/pxaficp_ir.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <asm/hardware.h> | 36 | #include <asm/hardware.h> |
37 | #include <asm/arch/irda.h> | 37 | #include <asm/arch/irda.h> |
38 | #include <asm/arch/pxa-regs.h> | 38 | #include <asm/arch/pxa-regs.h> |
39 | #include <asm/arch/pxa2xx-gpio.h> | ||
39 | 40 | ||
40 | #ifdef CONFIG_MACH_MAINSTONE | 41 | #ifdef CONFIG_MACH_MAINSTONE |
41 | #include <asm/arch/mainstone.h> | 42 | #include <asm/arch/mainstone.h> |
@@ -831,6 +832,11 @@ static int pxa_irda_probe(struct platform_device *pdev) | |||
831 | if (err) | 832 | if (err) |
832 | goto err_mem_5; | 833 | goto err_mem_5; |
833 | 834 | ||
835 | if (si->pdata->startup) | ||
836 | err = si->pdata->startup(si->dev); | ||
837 | if (err) | ||
838 | goto err_startup; | ||
839 | |||
834 | dev->hard_start_xmit = pxa_irda_hard_xmit; | 840 | dev->hard_start_xmit = pxa_irda_hard_xmit; |
835 | dev->open = pxa_irda_start; | 841 | dev->open = pxa_irda_start; |
836 | dev->stop = pxa_irda_stop; | 842 | dev->stop = pxa_irda_stop; |
@@ -856,6 +862,9 @@ static int pxa_irda_probe(struct platform_device *pdev) | |||
856 | dev_set_drvdata(&pdev->dev, dev); | 862 | dev_set_drvdata(&pdev->dev, dev); |
857 | 863 | ||
858 | if (err) { | 864 | if (err) { |
865 | if (si->pdata->shutdown) | ||
866 | si->pdata->shutdown(si->dev); | ||
867 | err_startup: | ||
859 | kfree(si->tx_buff.head); | 868 | kfree(si->tx_buff.head); |
860 | err_mem_5: | 869 | err_mem_5: |
861 | kfree(si->rx_buff.head); | 870 | kfree(si->rx_buff.head); |
@@ -881,6 +890,8 @@ static int pxa_irda_remove(struct platform_device *_dev) | |||
881 | if (dev) { | 890 | if (dev) { |
882 | struct pxa_irda *si = netdev_priv(dev); | 891 | struct pxa_irda *si = netdev_priv(dev); |
883 | unregister_netdev(dev); | 892 | unregister_netdev(dev); |
893 | if (si->pdata->shutdown) | ||
894 | si->pdata->shutdown(si->dev); | ||
884 | kfree(si->tx_buff.head); | 895 | kfree(si->tx_buff.head); |
885 | kfree(si->rx_buff.head); | 896 | kfree(si->rx_buff.head); |
886 | clk_put(si->fir_clk); | 897 | clk_put(si->fir_clk); |
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 125e7b7f34ff..f7cb8e0758b4 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c | |||
@@ -486,12 +486,7 @@ void __ref pci_bus_size_bridges(struct pci_bus *bus) | |||
486 | break; | 486 | break; |
487 | 487 | ||
488 | case PCI_CLASS_BRIDGE_PCI: | 488 | case PCI_CLASS_BRIDGE_PCI: |
489 | /* don't size subtractive decoding (transparent) | ||
490 | * PCI-to-PCI bridges */ | ||
491 | if (bus->self->transparent) | ||
492 | break; | ||
493 | pci_bridge_check_ranges(bus); | 489 | pci_bridge_check_ranges(bus); |
494 | /* fall through */ | ||
495 | default: | 490 | default: |
496 | pbus_size_io(bus); | 491 | pbus_size_io(bus); |
497 | /* If the bridge supports prefetchable range, size it | 492 | /* If the bridge supports prefetchable range, size it |
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig index 8b22281b087f..ed8c06904807 100644 --- a/drivers/pcmcia/Kconfig +++ b/drivers/pcmcia/Kconfig | |||
@@ -200,6 +200,7 @@ config PCMCIA_AU1X00 | |||
200 | config PCMCIA_SA1100 | 200 | config PCMCIA_SA1100 |
201 | tristate "SA1100 support" | 201 | tristate "SA1100 support" |
202 | depends on ARM && ARCH_SA1100 && PCMCIA | 202 | depends on ARM && ARCH_SA1100 && PCMCIA |
203 | depends on ARCH_LUBBOCK || MACH_MAINSTONE || PXA_SHARPSL || MACH_ARMCORE | ||
203 | help | 204 | help |
204 | Say Y here to include support for SA11x0-based PCMCIA or CF | 205 | Say Y here to include support for SA11x0-based PCMCIA or CF |
205 | sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/ | 206 | sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/ |
diff --git a/drivers/pcmcia/pxa2xx_cm_x270.c b/drivers/pcmcia/pxa2xx_cm_x270.c index fbf2f3a6984c..e7ab060ff118 100644 --- a/drivers/pcmcia/pxa2xx_cm_x270.c +++ b/drivers/pcmcia/pxa2xx_cm_x270.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/hardware.h> | 20 | #include <asm/hardware.h> |
21 | 21 | ||
22 | #include <asm/arch/pxa-regs.h> | 22 | #include <asm/arch/pxa-regs.h> |
23 | #include <asm/arch/pxa2xx-gpio.h> | ||
23 | #include <asm/arch/cm-x270.h> | 24 | #include <asm/arch/cm-x270.h> |
24 | 25 | ||
25 | #include "soc_common.h" | 26 | #include "soc_common.h" |
diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c index 56af1f566a4c..cf29a2d0ba4c 100644 --- a/drivers/serial/imx.c +++ b/drivers/serial/imx.c | |||
@@ -166,15 +166,6 @@ | |||
166 | #define SERIAL_IMX_MAJOR 204 | 166 | #define SERIAL_IMX_MAJOR 204 |
167 | #define MINOR_START 41 | 167 | #define MINOR_START 41 |
168 | 168 | ||
169 | #define NR_PORTS 2 | ||
170 | |||
171 | #define IMX_ISR_PASS_LIMIT 256 | ||
172 | |||
173 | /* | ||
174 | * This is the size of our serial port register set. | ||
175 | */ | ||
176 | #define UART_PORT_SIZE 0x100 | ||
177 | |||
178 | /* | 169 | /* |
179 | * This determines how often we check the modem status signals | 170 | * This determines how often we check the modem status signals |
180 | * for any change. They generally aren't connected to an IRQ | 171 | * for any change. They generally aren't connected to an IRQ |
@@ -358,66 +349,60 @@ static irqreturn_t imx_rxint(int irq, void *dev_id) | |||
358 | struct tty_struct *tty = sport->port.info->tty; | 349 | struct tty_struct *tty = sport->port.info->tty; |
359 | unsigned long flags, temp; | 350 | unsigned long flags, temp; |
360 | 351 | ||
361 | rx = readl(sport->port.membase + URXD0); | ||
362 | spin_lock_irqsave(&sport->port.lock,flags); | 352 | spin_lock_irqsave(&sport->port.lock,flags); |
363 | 353 | ||
364 | do { | 354 | while (readl(sport->port.membase + USR2) & USR2_RDR) { |
365 | flg = TTY_NORMAL; | 355 | flg = TTY_NORMAL; |
366 | sport->port.icount.rx++; | 356 | sport->port.icount.rx++; |
367 | 357 | ||
358 | rx = readl(sport->port.membase + URXD0); | ||
359 | |||
368 | temp = readl(sport->port.membase + USR2); | 360 | temp = readl(sport->port.membase + USR2); |
369 | if( temp & USR2_BRCD ) { | 361 | if (temp & USR2_BRCD) { |
370 | writel(temp | USR2_BRCD, sport->port.membase + USR2); | 362 | writel(temp | USR2_BRCD, sport->port.membase + USR2); |
371 | if(uart_handle_break(&sport->port)) | 363 | if (uart_handle_break(&sport->port)) |
372 | goto ignore_char; | 364 | continue; |
373 | } | 365 | } |
374 | 366 | ||
375 | if (uart_handle_sysrq_char | 367 | if (uart_handle_sysrq_char |
376 | (&sport->port, (unsigned char)rx)) | 368 | (&sport->port, (unsigned char)rx)) |
377 | goto ignore_char; | 369 | continue; |
370 | |||
371 | if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) { | ||
372 | if (rx & URXD_PRERR) | ||
373 | sport->port.icount.parity++; | ||
374 | else if (rx & URXD_FRMERR) | ||
375 | sport->port.icount.frame++; | ||
376 | if (rx & URXD_OVRRUN) | ||
377 | sport->port.icount.overrun++; | ||
378 | |||
379 | if (rx & sport->port.ignore_status_mask) { | ||
380 | if (++ignored > 100) | ||
381 | goto out; | ||
382 | continue; | ||
383 | } | ||
384 | |||
385 | rx &= sport->port.read_status_mask; | ||
386 | |||
387 | if (rx & URXD_PRERR) | ||
388 | flg = TTY_PARITY; | ||
389 | else if (rx & URXD_FRMERR) | ||
390 | flg = TTY_FRAME; | ||
391 | if (rx & URXD_OVRRUN) | ||
392 | flg = TTY_OVERRUN; | ||
378 | 393 | ||
379 | if( rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) | 394 | #ifdef SUPPORT_SYSRQ |
380 | goto handle_error; | 395 | sport->port.sysrq = 0; |
396 | #endif | ||
397 | } | ||
381 | 398 | ||
382 | error_return: | ||
383 | tty_insert_flip_char(tty, rx, flg); | 399 | tty_insert_flip_char(tty, rx, flg); |
384 | 400 | } | |
385 | ignore_char: | ||
386 | rx = readl(sport->port.membase + URXD0); | ||
387 | } while(rx & URXD_CHARRDY); | ||
388 | 401 | ||
389 | out: | 402 | out: |
390 | spin_unlock_irqrestore(&sport->port.lock,flags); | 403 | spin_unlock_irqrestore(&sport->port.lock,flags); |
391 | tty_flip_buffer_push(tty); | 404 | tty_flip_buffer_push(tty); |
392 | return IRQ_HANDLED; | 405 | return IRQ_HANDLED; |
393 | |||
394 | handle_error: | ||
395 | if (rx & URXD_PRERR) | ||
396 | sport->port.icount.parity++; | ||
397 | else if (rx & URXD_FRMERR) | ||
398 | sport->port.icount.frame++; | ||
399 | if (rx & URXD_OVRRUN) | ||
400 | sport->port.icount.overrun++; | ||
401 | |||
402 | if (rx & sport->port.ignore_status_mask) { | ||
403 | if (++ignored > 100) | ||
404 | goto out; | ||
405 | goto ignore_char; | ||
406 | } | ||
407 | |||
408 | rx &= sport->port.read_status_mask; | ||
409 | |||
410 | if (rx & URXD_PRERR) | ||
411 | flg = TTY_PARITY; | ||
412 | else if (rx & URXD_FRMERR) | ||
413 | flg = TTY_FRAME; | ||
414 | if (rx & URXD_OVRRUN) | ||
415 | flg = TTY_OVERRUN; | ||
416 | |||
417 | #ifdef SUPPORT_SYSRQ | ||
418 | sport->port.sysrq = 0; | ||
419 | #endif | ||
420 | goto error_return; | ||
421 | } | 406 | } |
422 | 407 | ||
423 | /* | 408 | /* |
@@ -546,7 +531,7 @@ static int imx_startup(struct uart_port *port) | |||
546 | writel(USR1_RTSD, sport->port.membase + USR1); | 531 | writel(USR1_RTSD, sport->port.membase + USR1); |
547 | 532 | ||
548 | temp = readl(sport->port.membase + UCR1); | 533 | temp = readl(sport->port.membase + UCR1); |
549 | temp |= (UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN); | 534 | temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN; |
550 | writel(temp, sport->port.membase + UCR1); | 535 | writel(temp, sport->port.membase + UCR1); |
551 | 536 | ||
552 | temp = readl(sport->port.membase + UCR2); | 537 | temp = readl(sport->port.membase + UCR2); |
@@ -731,9 +716,11 @@ static const char *imx_type(struct uart_port *port) | |||
731 | */ | 716 | */ |
732 | static void imx_release_port(struct uart_port *port) | 717 | static void imx_release_port(struct uart_port *port) |
733 | { | 718 | { |
734 | struct imx_port *sport = (struct imx_port *)port; | 719 | struct platform_device *pdev = to_platform_device(port->dev); |
720 | struct resource *mmres; | ||
735 | 721 | ||
736 | release_mem_region(sport->port.mapbase, UART_PORT_SIZE); | 722 | mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
723 | release_mem_region(mmres->start, mmres->end - mmres->start + 1); | ||
737 | } | 724 | } |
738 | 725 | ||
739 | /* | 726 | /* |
@@ -741,10 +728,18 @@ static void imx_release_port(struct uart_port *port) | |||
741 | */ | 728 | */ |
742 | static int imx_request_port(struct uart_port *port) | 729 | static int imx_request_port(struct uart_port *port) |
743 | { | 730 | { |
744 | struct imx_port *sport = (struct imx_port *)port; | 731 | struct platform_device *pdev = to_platform_device(port->dev); |
732 | struct resource *mmres; | ||
733 | void *ret; | ||
734 | |||
735 | mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
736 | if (!mmres) | ||
737 | return -ENODEV; | ||
738 | |||
739 | ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1, | ||
740 | "imx-uart"); | ||
745 | 741 | ||
746 | return request_mem_region(sport->port.mapbase, UART_PORT_SIZE, | 742 | return ret ? 0 : -EBUSY; |
747 | "imx-uart") != NULL ? 0 : -EBUSY; | ||
748 | } | 743 | } |
749 | 744 | ||
750 | /* | 745 | /* |
@@ -815,7 +810,7 @@ static struct imx_port imx_ports[] = { | |||
815 | .type = PORT_IMX, | 810 | .type = PORT_IMX, |
816 | .iotype = UPIO_MEM, | 811 | .iotype = UPIO_MEM, |
817 | .membase = (void *)IMX_UART1_BASE, | 812 | .membase = (void *)IMX_UART1_BASE, |
818 | .mapbase = IMX_UART1_BASE, /* FIXME */ | 813 | .mapbase = 0x00206000, |
819 | .irq = UART1_MINT_RX, | 814 | .irq = UART1_MINT_RX, |
820 | .uartclk = 16000000, | 815 | .uartclk = 16000000, |
821 | .fifosize = 32, | 816 | .fifosize = 32, |
@@ -831,7 +826,7 @@ static struct imx_port imx_ports[] = { | |||
831 | .type = PORT_IMX, | 826 | .type = PORT_IMX, |
832 | .iotype = UPIO_MEM, | 827 | .iotype = UPIO_MEM, |
833 | .membase = (void *)IMX_UART2_BASE, | 828 | .membase = (void *)IMX_UART2_BASE, |
834 | .mapbase = IMX_UART2_BASE, /* FIXME */ | 829 | .mapbase = 0x00207000, |
835 | .irq = UART2_MINT_RX, | 830 | .irq = UART2_MINT_RX, |
836 | .uartclk = 16000000, | 831 | .uartclk = 16000000, |
837 | .fifosize = 32, | 832 | .fifosize = 32, |
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 46ee7f4c0912..85074cb36f38 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -1033,7 +1033,7 @@ MODULE_LICENSE ("GPL"); | |||
1033 | #define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver | 1033 | #define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver |
1034 | #endif | 1034 | #endif |
1035 | 1035 | ||
1036 | #ifdef CONFIG_ARCH_ORION | 1036 | #ifdef CONFIG_PLAT_ORION |
1037 | #include "ehci-orion.c" | 1037 | #include "ehci-orion.c" |
1038 | #define PLATFORM_DRIVER ehci_orion_driver | 1038 | #define PLATFORM_DRIVER ehci_orion_driver |
1039 | #endif | 1039 | #endif |
diff --git a/drivers/usb/host/ehci-orion.c b/drivers/usb/host/ehci-orion.c index e129981f139f..d187d0313742 100644 --- a/drivers/usb/host/ehci-orion.c +++ b/drivers/usb/host/ehci-orion.c | |||
@@ -11,15 +11,18 @@ | |||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | 12 | #include <linux/module.h> |
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <asm/arch/orion.h> | 14 | #include <linux/mbus.h> |
15 | #include <asm/plat-orion/ehci-orion.h> | ||
15 | 16 | ||
16 | #define rdl(off) __raw_readl(hcd->regs + (off)) | 17 | #define rdl(off) __raw_readl(hcd->regs + (off)) |
17 | #define wrl(off, val) __raw_writel((val), hcd->regs + (off)) | 18 | #define wrl(off, val) __raw_writel((val), hcd->regs + (off)) |
18 | 19 | ||
19 | #define USB_CAUSE 0x310 | ||
20 | #define USB_MASK 0x314 | ||
21 | #define USB_CMD 0x140 | 20 | #define USB_CMD 0x140 |
22 | #define USB_MODE 0x1a8 | 21 | #define USB_MODE 0x1a8 |
22 | #define USB_CAUSE 0x310 | ||
23 | #define USB_MASK 0x314 | ||
24 | #define USB_WINDOW_CTRL(i) (0x320 + ((i) << 4)) | ||
25 | #define USB_WINDOW_BASE(i) (0x324 + ((i) << 4)) | ||
23 | #define USB_IPG 0x360 | 26 | #define USB_IPG 0x360 |
24 | #define USB_PHY_PWR_CTRL 0x400 | 27 | #define USB_PHY_PWR_CTRL 0x400 |
25 | #define USB_PHY_TX_CTRL 0x420 | 28 | #define USB_PHY_TX_CTRL 0x420 |
@@ -162,8 +165,30 @@ static const struct hc_driver ehci_orion_hc_driver = { | |||
162 | .bus_resume = ehci_bus_resume, | 165 | .bus_resume = ehci_bus_resume, |
163 | }; | 166 | }; |
164 | 167 | ||
168 | static void __init | ||
169 | ehci_orion_conf_mbus_windows(struct usb_hcd *hcd, | ||
170 | struct mbus_dram_target_info *dram) | ||
171 | { | ||
172 | int i; | ||
173 | |||
174 | for (i = 0; i < 4; i++) { | ||
175 | wrl(USB_WINDOW_CTRL(i), 0); | ||
176 | wrl(USB_WINDOW_BASE(i), 0); | ||
177 | } | ||
178 | |||
179 | for (i = 0; i < dram->num_cs; i++) { | ||
180 | struct mbus_dram_window *cs = dram->cs + i; | ||
181 | |||
182 | wrl(USB_WINDOW_CTRL(i), ((cs->size - 1) & 0xffff0000) | | ||
183 | (cs->mbus_attr << 8) | | ||
184 | (dram->mbus_dram_target_id << 4) | 1); | ||
185 | wrl(USB_WINDOW_BASE(i), cs->base); | ||
186 | } | ||
187 | } | ||
188 | |||
165 | static int __init ehci_orion_drv_probe(struct platform_device *pdev) | 189 | static int __init ehci_orion_drv_probe(struct platform_device *pdev) |
166 | { | 190 | { |
191 | struct orion_ehci_data *pd = pdev->dev.platform_data; | ||
167 | struct resource *res; | 192 | struct resource *res; |
168 | struct usb_hcd *hcd; | 193 | struct usb_hcd *hcd; |
169 | struct ehci_hcd *ehci; | 194 | struct ehci_hcd *ehci; |
@@ -227,6 +252,12 @@ static int __init ehci_orion_drv_probe(struct platform_device *pdev) | |||
227 | ehci->sbrn = 0x20; | 252 | ehci->sbrn = 0x20; |
228 | 253 | ||
229 | /* | 254 | /* |
255 | * (Re-)program MBUS remapping windows if we are asked to. | ||
256 | */ | ||
257 | if (pd != NULL && pd->dram != NULL) | ||
258 | ehci_orion_conf_mbus_windows(hcd, pd->dram); | ||
259 | |||
260 | /* | ||
230 | * setup Orion USB controller | 261 | * setup Orion USB controller |
231 | */ | 262 | */ |
232 | orion_usb_setup(hcd); | 263 | orion_usb_setup(hcd); |
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index 97facb121c73..757651954e6c 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <asm/irq.h> | 45 | #include <asm/irq.h> |
46 | #include <asm/div64.h> | 46 | #include <asm/div64.h> |
47 | #include <asm/arch/pxa-regs.h> | 47 | #include <asm/arch/pxa-regs.h> |
48 | #include <asm/arch/pxa2xx-gpio.h> | ||
48 | #include <asm/arch/bitfield.h> | 49 | #include <asm/arch/bitfield.h> |
49 | #include <asm/arch/pxafb.h> | 50 | #include <asm/arch/pxafb.h> |
50 | 51 | ||