diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-10-09 16:33:05 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-10-09 16:33:05 -0400 |
commit | c97f68145e8067b3ac4b126a6faebf90f9ffc302 (patch) | |
tree | eb2060681552a00e9efa98224b95f69a3dc84390 /arch/arm/mach-davinci/include | |
parent | b1add0480a95b6ceaece5caf6c50614771eae9b2 (diff) | |
parent | 7bff3c4ce44ea48f50dc47a5994454984bd08c59 (diff) |
Merge branch 'for-rmk' of git://source.mvista.com/git/linux-davinci-2.6.git
Merge branch 'davinci' into devel
Diffstat (limited to 'arch/arm/mach-davinci/include')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/common.h | 3 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/gpio.h | 73 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/i2c.h | 7 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/io.h | 43 |
4 files changed, 55 insertions, 71 deletions
diff --git a/arch/arm/mach-davinci/include/mach/common.h b/arch/arm/mach-davinci/include/mach/common.h index a97dfbb15e57..4b522e5c70ec 100644 --- a/arch/arm/mach-davinci/include/mach/common.h +++ b/arch/arm/mach-davinci/include/mach/common.h | |||
@@ -16,4 +16,7 @@ struct sys_timer; | |||
16 | 16 | ||
17 | extern struct sys_timer davinci_timer; | 17 | extern struct sys_timer davinci_timer; |
18 | 18 | ||
19 | /* parameters describe VBUS sourcing for host mode */ | ||
20 | extern void setup_usb(unsigned mA, unsigned potpgt_msec); | ||
21 | |||
19 | #endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */ | 22 | #endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */ |
diff --git a/arch/arm/mach-davinci/include/mach/gpio.h b/arch/arm/mach-davinci/include/mach/gpio.h index ec151ccf1e8f..b3a2961f0f46 100644 --- a/arch/arm/mach-davinci/include/mach/gpio.h +++ b/arch/arm/mach-davinci/include/mach/gpio.h | |||
@@ -14,6 +14,7 @@ | |||
14 | #define __DAVINCI_GPIO_H | 14 | #define __DAVINCI_GPIO_H |
15 | 15 | ||
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <asm-generic/gpio.h> | ||
17 | #include <mach/hardware.h> | 18 | #include <mach/hardware.h> |
18 | 19 | ||
19 | /* | 20 | /* |
@@ -27,13 +28,16 @@ | |||
27 | * need to pay attention to PINMUX0 and PINMUX1 to be sure those pins are | 28 | * need to pay attention to PINMUX0 and PINMUX1 to be sure those pins are |
28 | * used as gpios, not with other peripherals. | 29 | * used as gpios, not with other peripherals. |
29 | * | 30 | * |
30 | * GPIOs are numbered 0..(DAVINCI_N_GPIO-1). For documentation, and maybe | 31 | * On-chip GPIOs are numbered 0..(DAVINCI_N_GPIO-1). For documentation, |
31 | * for later updates, code should write GPIO(N) or: | 32 | * and maybe for later updates, code should write GPIO(N) or: |
32 | * - GPIOV18(N) for 1.8V pins, N in 0..53; same as GPIO(0)..GPIO(53) | 33 | * - GPIOV18(N) for 1.8V pins, N in 0..53; same as GPIO(0)..GPIO(53) |
33 | * - GPIOV33(N) for 3.3V pins, N in 0..17; same as GPIO(54)..GPIO(70) | 34 | * - GPIOV33(N) for 3.3V pins, N in 0..17; same as GPIO(54)..GPIO(70) |
34 | * | 35 | * |
35 | * For GPIO IRQs use gpio_to_irq(GPIO(N)) or gpio_to_irq(GPIOV33(N)) etc | 36 | * For GPIO IRQs use gpio_to_irq(GPIO(N)) or gpio_to_irq(GPIOV33(N)) etc |
36 | * for now, that's != GPIO(N) | 37 | * for now, that's != GPIO(N) |
38 | * | ||
39 | * GPIOs can also be on external chips, numbered after the ones built-in | ||
40 | * to the DaVinci chip. For now, they won't be usable as IRQ sources. | ||
37 | */ | 41 | */ |
38 | #define GPIO(X) (X) /* 0 <= X <= 70 */ | 42 | #define GPIO(X) (X) /* 0 <= X <= 70 */ |
39 | #define GPIOV18(X) (X) /* 1.8V i/o; 0 <= X <= 53 */ | 43 | #define GPIOV18(X) (X) /* 1.8V i/o; 0 <= X <= 53 */ |
@@ -67,11 +71,11 @@ __gpio_to_controller(unsigned gpio) | |||
67 | void *__iomem ptr; | 71 | void *__iomem ptr; |
68 | 72 | ||
69 | if (gpio < 32) | 73 | if (gpio < 32) |
70 | ptr = (void *__iomem)IO_ADDRESS(DAVINCI_GPIO_BASE + 0x10); | 74 | ptr = IO_ADDRESS(DAVINCI_GPIO_BASE + 0x10); |
71 | else if (gpio < 64) | 75 | else if (gpio < 64) |
72 | ptr = (void *__iomem)IO_ADDRESS(DAVINCI_GPIO_BASE + 0x38); | 76 | ptr = IO_ADDRESS(DAVINCI_GPIO_BASE + 0x38); |
73 | else if (gpio < DAVINCI_N_GPIO) | 77 | else if (gpio < DAVINCI_N_GPIO) |
74 | ptr = (void *__iomem)IO_ADDRESS(DAVINCI_GPIO_BASE + 0x60); | 78 | ptr = IO_ADDRESS(DAVINCI_GPIO_BASE + 0x60); |
75 | else | 79 | else |
76 | ptr = NULL; | 80 | ptr = NULL; |
77 | return ptr; | 81 | return ptr; |
@@ -83,25 +87,17 @@ static inline u32 __gpio_mask(unsigned gpio) | |||
83 | } | 87 | } |
84 | 88 | ||
85 | /* The get/set/clear functions will inline when called with constant | 89 | /* The get/set/clear functions will inline when called with constant |
86 | * parameters, for low-overhead bitbanging. Illegal constant parameters | 90 | * parameters referencing built-in GPIOs, for low-overhead bitbanging. |
87 | * cause link-time errors. | ||
88 | * | 91 | * |
89 | * Otherwise, calls with variable parameters use outlined functions. | 92 | * Otherwise, calls with variable parameters or referencing external |
93 | * GPIOs (e.g. on GPIO expander chips) use outlined functions. | ||
90 | */ | 94 | */ |
91 | extern int __error_inval_gpio(void); | ||
92 | |||
93 | extern void __gpio_set(unsigned gpio, int value); | ||
94 | extern int __gpio_get(unsigned gpio); | ||
95 | |||
96 | static inline void gpio_set_value(unsigned gpio, int value) | 95 | static inline void gpio_set_value(unsigned gpio, int value) |
97 | { | 96 | { |
98 | if (__builtin_constant_p(value)) { | 97 | if (__builtin_constant_p(value) && gpio < DAVINCI_N_GPIO) { |
99 | struct gpio_controller *__iomem g; | 98 | struct gpio_controller *__iomem g; |
100 | u32 mask; | 99 | u32 mask; |
101 | 100 | ||
102 | if (gpio >= DAVINCI_N_GPIO) | ||
103 | __error_inval_gpio(); | ||
104 | |||
105 | g = __gpio_to_controller(gpio); | 101 | g = __gpio_to_controller(gpio); |
106 | mask = __gpio_mask(gpio); | 102 | mask = __gpio_mask(gpio); |
107 | if (value) | 103 | if (value) |
@@ -111,48 +107,47 @@ static inline void gpio_set_value(unsigned gpio, int value) | |||
111 | return; | 107 | return; |
112 | } | 108 | } |
113 | 109 | ||
114 | __gpio_set(gpio, value); | 110 | __gpio_set_value(gpio, value); |
115 | } | 111 | } |
116 | 112 | ||
117 | /* Returns zero or nonzero; works for gpios configured as inputs OR | 113 | /* Returns zero or nonzero; works for gpios configured as inputs OR |
118 | * as outputs. | 114 | * as outputs, at least for built-in GPIOs. |
119 | * | 115 | * |
120 | * NOTE: changes in reported values are synchronized to the GPIO clock. | 116 | * NOTE: for built-in GPIOs, changes in reported values are synchronized |
121 | * This is most easily seen after calling gpio_set_value() and then immediatly | 117 | * to the GPIO clock. This is easily seen after calling gpio_set_value() |
122 | * gpio_get_value(), where the gpio_get_value() would return the old value | 118 | * and then immediately gpio_get_value(), where the gpio_get_value() will |
123 | * until the GPIO clock ticks and the new value gets latched. | 119 | * return the old value until the GPIO clock ticks and the new value gets |
120 | * latched. | ||
124 | */ | 121 | */ |
125 | |||
126 | static inline int gpio_get_value(unsigned gpio) | 122 | static inline int gpio_get_value(unsigned gpio) |
127 | { | 123 | { |
128 | struct gpio_controller *__iomem g; | 124 | struct gpio_controller *__iomem g; |
129 | |||
130 | if (!__builtin_constant_p(gpio)) | ||
131 | return __gpio_get(gpio); | ||
132 | 125 | ||
133 | if (gpio >= DAVINCI_N_GPIO) | 126 | if (!__builtin_constant_p(gpio) || gpio >= DAVINCI_N_GPIO) |
134 | return __error_inval_gpio(); | 127 | return __gpio_get_value(gpio); |
135 | 128 | ||
136 | g = __gpio_to_controller(gpio); | 129 | g = __gpio_to_controller(gpio); |
137 | return !!(__gpio_mask(gpio) & __raw_readl(&g->in_data)); | 130 | return __gpio_mask(gpio) & __raw_readl(&g->in_data); |
138 | } | 131 | } |
139 | 132 | ||
140 | /* powerup default direction is IN */ | 133 | static inline int gpio_cansleep(unsigned gpio) |
141 | extern int gpio_direction_input(unsigned gpio); | 134 | { |
142 | extern int gpio_direction_output(unsigned gpio, int value); | 135 | if (__builtin_constant_p(gpio) && gpio < DAVINCI_N_GPIO) |
143 | 136 | return 0; | |
144 | #include <asm-generic/gpio.h> /* cansleep wrappers */ | 137 | else |
145 | 138 | return __gpio_cansleep(gpio); | |
146 | extern int gpio_request(unsigned gpio, const char *tag); | 139 | } |
147 | extern void gpio_free(unsigned gpio); | ||
148 | 140 | ||
149 | static inline int gpio_to_irq(unsigned gpio) | 141 | static inline int gpio_to_irq(unsigned gpio) |
150 | { | 142 | { |
143 | if (gpio >= DAVINCI_N_GPIO) | ||
144 | return -EINVAL; | ||
151 | return DAVINCI_N_AINTC_IRQ + gpio; | 145 | return DAVINCI_N_AINTC_IRQ + gpio; |
152 | } | 146 | } |
153 | 147 | ||
154 | static inline int irq_to_gpio(unsigned irq) | 148 | static inline int irq_to_gpio(unsigned irq) |
155 | { | 149 | { |
150 | /* caller guarantees gpio_to_irq() succeeded */ | ||
156 | return irq - DAVINCI_N_AINTC_IRQ; | 151 | return irq - DAVINCI_N_AINTC_IRQ; |
157 | } | 152 | } |
158 | 153 | ||
diff --git a/arch/arm/mach-davinci/include/mach/i2c.h b/arch/arm/mach-davinci/include/mach/i2c.h index e2f54168abd1..c248e9b7e825 100644 --- a/arch/arm/mach-davinci/include/mach/i2c.h +++ b/arch/arm/mach-davinci/include/mach/i2c.h | |||
@@ -14,8 +14,11 @@ | |||
14 | 14 | ||
15 | /* All frequencies are expressed in kHz */ | 15 | /* All frequencies are expressed in kHz */ |
16 | struct davinci_i2c_platform_data { | 16 | struct davinci_i2c_platform_data { |
17 | unsigned int bus_freq; /* standard bus frequency */ | 17 | unsigned int bus_freq; /* standard bus frequency (kHz) */ |
18 | unsigned int bus_delay; /* transaction delay */ | 18 | unsigned int bus_delay; /* post-transaction delay (usec) */ |
19 | }; | 19 | }; |
20 | 20 | ||
21 | /* for board setup code */ | ||
22 | void davinci_init_i2c(struct davinci_i2c_platform_data *); | ||
23 | |||
21 | #endif /* __ASM_ARCH_I2C_H */ | 24 | #endif /* __ASM_ARCH_I2C_H */ |
diff --git a/arch/arm/mach-davinci/include/mach/io.h b/arch/arm/mach-davinci/include/mach/io.h index e7accb910864..b78ee9140496 100644 --- a/arch/arm/mach-davinci/include/mach/io.h +++ b/arch/arm/mach-davinci/include/mach/io.h | |||
@@ -22,9 +22,8 @@ | |||
22 | #define IO_OFFSET 0xfd000000 /* Virtual IO = 0xfec00000 */ | 22 | #define IO_OFFSET 0xfd000000 /* Virtual IO = 0xfec00000 */ |
23 | #define IO_SIZE 0x00400000 | 23 | #define IO_SIZE 0x00400000 |
24 | #define IO_VIRT (IO_PHYS + IO_OFFSET) | 24 | #define IO_VIRT (IO_PHYS + IO_OFFSET) |
25 | #define io_p2v(pa) ((pa) + IO_OFFSET) | ||
26 | #define io_v2p(va) ((va) - IO_OFFSET) | 25 | #define io_v2p(va) ((va) - IO_OFFSET) |
27 | #define IO_ADDRESS(x) io_p2v(x) | 26 | #define __IO_ADDRESS(x) ((x) + IO_OFFSET) |
28 | 27 | ||
29 | /* | 28 | /* |
30 | * We don't actually have real ISA nor PCI buses, but there is so many | 29 | * We don't actually have real ISA nor PCI buses, but there is so many |
@@ -35,7 +34,12 @@ | |||
35 | #define __mem_pci(a) (a) | 34 | #define __mem_pci(a) (a) |
36 | #define __mem_isa(a) (a) | 35 | #define __mem_isa(a) (a) |
37 | 36 | ||
38 | #ifndef __ASSEMBLER__ | 37 | #define IO_ADDRESS(pa) IOMEM(__IO_ADDRESS(pa)) |
38 | |||
39 | #ifdef __ASSEMBLER__ | ||
40 | #define IOMEM(x) x | ||
41 | #else | ||
42 | #define IOMEM(x) ((void __force __iomem *)(x)) | ||
39 | 43 | ||
40 | /* | 44 | /* |
41 | * Functions to access the DaVinci IO region | 45 | * Functions to access the DaVinci IO region |
@@ -46,34 +50,13 @@ | |||
46 | * - DO NOT use hardcoded virtual addresses to allow changing the | 50 | * - DO NOT use hardcoded virtual addresses to allow changing the |
47 | * IO address space again if needed | 51 | * IO address space again if needed |
48 | */ | 52 | */ |
49 | #define davinci_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) | 53 | #define davinci_readb(a) __raw_readb(IO_ADDRESS(a)) |
50 | #define davinci_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) | 54 | #define davinci_readw(a) __raw_readw(IO_ADDRESS(a)) |
51 | #define davinci_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) | 55 | #define davinci_readl(a) __raw_readl(IO_ADDRESS(a)) |
52 | |||
53 | #define davinci_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) | ||
54 | #define davinci_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) | ||
55 | #define davinci_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) | ||
56 | |||
57 | /* 16 bit uses LDRH/STRH, base +/- offset_8 */ | ||
58 | typedef struct { volatile u16 offset[256]; } __regbase16; | ||
59 | #define __REGV16(vaddr) ((__regbase16 *)((vaddr)&~0xff)) \ | ||
60 | ->offset[((vaddr)&0xff)>>1] | ||
61 | #define __REG16(paddr) __REGV16(io_p2v(paddr)) | ||
62 | |||
63 | /* 8/32 bit uses LDR/STR, base +/- offset_12 */ | ||
64 | typedef struct { volatile u8 offset[4096]; } __regbase8; | ||
65 | #define __REGV8(vaddr) ((__regbase8 *)((vaddr)&~4095)) \ | ||
66 | ->offset[((vaddr)&4095)>>0] | ||
67 | #define __REG8(paddr) __REGV8(io_p2v(paddr)) | ||
68 | |||
69 | typedef struct { volatile u32 offset[4096]; } __regbase32; | ||
70 | #define __REGV32(vaddr) ((__regbase32 *)((vaddr)&~4095)) \ | ||
71 | ->offset[((vaddr)&4095)>>2] | ||
72 | |||
73 | #define __REG(paddr) __REGV32(io_p2v(paddr)) | ||
74 | #else | ||
75 | 56 | ||
76 | #define __REG(x) (*((volatile unsigned long *)io_p2v(x))) | 57 | #define davinci_writeb(v, a) __raw_writeb(v, IO_ADDRESS(a)) |
58 | #define davinci_writew(v, a) __raw_writew(v, IO_ADDRESS(a)) | ||
59 | #define davinci_writel(v, a) __raw_writel(v, IO_ADDRESS(a)) | ||
77 | 60 | ||
78 | #endif /* __ASSEMBLER__ */ | 61 | #endif /* __ASSEMBLER__ */ |
79 | #endif /* __ASM_ARCH_IO_H */ | 62 | #endif /* __ASM_ARCH_IO_H */ |