diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2011-07-22 15:45:50 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2011-07-22 15:45:50 +0000 |
commit | 85c32dbd12108fc570afdec450b7d73684f37a2d (patch) | |
tree | 418fad12717a7d08eb349c9c5c447734604eb01c | |
parent | 7d1d4c6f076ce545ab9d253d5ce77f633733bddc (diff) | |
download | rockbox-85c32dbd12108fc570afdec450b7d73684f37a2d.tar.gz rockbox-85c32dbd12108fc570afdec450b7d73684f37a2d.zip |
imx233/fuze+: add pin irq support
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30195 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/SOURCES | 3 | ||||
-rw-r--r-- | firmware/target/arm/imx233/pinctrl-imx233.c | 77 | ||||
-rw-r--r-- | firmware/target/arm/imx233/pinctrl-imx233.h | 7 |
3 files changed, 85 insertions, 2 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES index 457519dba3..610cc42112 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES | |||
@@ -501,6 +501,7 @@ target/arm/imx233/mmc-imx233.c | |||
501 | target/arm/imx233/ssp-imx233.c | 501 | target/arm/imx233/ssp-imx233.c |
502 | target/arm/imx233/usb-imx233.c | 502 | target/arm/imx233/usb-imx233.c |
503 | target/arm/imx233/dma-imx233.c | 503 | target/arm/imx233/dma-imx233.c |
504 | target/arm/imx233/pinctrl-imx233.c | ||
504 | #endif /* IMX233 */ | 505 | #endif /* IMX233 */ |
505 | 506 | ||
506 | #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 | 507 | #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 |
@@ -1453,11 +1454,9 @@ target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S | |||
1453 | 1454 | ||
1454 | #ifdef SANSA_FUZEPLUS | 1455 | #ifdef SANSA_FUZEPLUS |
1455 | #ifndef SIMULATOR | 1456 | #ifndef SIMULATOR |
1456 | #ifndef BOOTLOADER | ||
1457 | drivers/synaptics-rmi.c | 1457 | drivers/synaptics-rmi.c |
1458 | drivers/generic_i2c.c | 1458 | drivers/generic_i2c.c |
1459 | target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c | 1459 | target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c |
1460 | #endif | ||
1461 | target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c | 1460 | target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c |
1462 | target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c | 1461 | target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c |
1463 | target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c | 1462 | target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c |
diff --git a/firmware/target/arm/imx233/pinctrl-imx233.c b/firmware/target/arm/imx233/pinctrl-imx233.c new file mode 100644 index 0000000000..7997292fcb --- /dev/null +++ b/firmware/target/arm/imx233/pinctrl-imx233.c | |||
@@ -0,0 +1,77 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * | ||
10 | * Copyright (C) 2011 by Amaury Pouly | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or | ||
13 | * modify it under the terms of the GNU General Public License | ||
14 | * as published by the Free Software Foundation; either version 2 | ||
15 | * of the License, or (at your option) any later version. | ||
16 | * | ||
17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
18 | * KIND, either express or implied. | ||
19 | * | ||
20 | ****************************************************************************/ | ||
21 | #include "system.h" | ||
22 | #include "system-target.h" | ||
23 | #include "cpu.h" | ||
24 | #include "pinctrl-imx233.h" | ||
25 | |||
26 | static pin_irq_cb_t pin_cb[3][32]; /* 3 banks, 32 pins/bank */ | ||
27 | |||
28 | static void INT_GPIO(int bank) | ||
29 | { | ||
30 | uint32_t fire = HW_PINCTRL_IRQSTAT(bank) & HW_PINCTRL_IRQEN(bank); | ||
31 | for(int pin = 0; pin < 32; pin++) | ||
32 | if(fire & (1 << pin)) | ||
33 | { | ||
34 | pin_irq_cb_t cb = pin_cb[bank][pin]; | ||
35 | imx233_setup_pin_irq(bank, pin, false, false, false, NULL); | ||
36 | if(cb) | ||
37 | cb(bank, pin); | ||
38 | } | ||
39 | } | ||
40 | |||
41 | void INT_GPIO0(void) | ||
42 | { | ||
43 | INT_GPIO(0); | ||
44 | } | ||
45 | |||
46 | void INT_GPIO1(void) | ||
47 | { | ||
48 | INT_GPIO(1); | ||
49 | } | ||
50 | |||
51 | void INT_GPIO2(void) | ||
52 | { | ||
53 | INT_GPIO(2); | ||
54 | } | ||
55 | |||
56 | void imx233_setup_pin_irq(int bank, int pin, bool enable_int, | ||
57 | bool level, bool polarity, pin_irq_cb_t cb) | ||
58 | { | ||
59 | __REG_CLR(HW_PINCTRL_PIN2IRQ(bank)) = 1 << pin; | ||
60 | __REG_CLR(HW_PINCTRL_IRQEN(bank)) = 1 << pin; | ||
61 | __REG_CLR(HW_PINCTRL_IRQSTAT(bank))= 1 << pin; | ||
62 | pin_cb[bank][pin] = cb; | ||
63 | if(enable_int) | ||
64 | { | ||
65 | if(level) | ||
66 | __REG_SET(HW_PINCTRL_IRQLEVEL(bank)) = 1 << pin; | ||
67 | else | ||
68 | __REG_CLR(HW_PINCTRL_IRQLEVEL(bank)) = 1 << pin; | ||
69 | if(polarity) | ||
70 | __REG_SET(HW_PINCTRL_IRQPOL(bank)) = 1 << pin; | ||
71 | else | ||
72 | __REG_CLR(HW_PINCTRL_IRQPOL(bank)) = 1 << pin; | ||
73 | __REG_SET(HW_PINCTRL_PIN2IRQ(bank)) = 1 << pin; | ||
74 | __REG_SET(HW_PINCTRL_IRQEN(bank)) = 1 << pin; | ||
75 | imx233_enable_interrupt(INT_SRC_GPIO(bank), true); | ||
76 | } | ||
77 | } | ||
diff --git a/firmware/target/arm/imx233/pinctrl-imx233.h b/firmware/target/arm/imx233/pinctrl-imx233.h index a2e02adec4..ec23410442 100644 --- a/firmware/target/arm/imx233/pinctrl-imx233.h +++ b/firmware/target/arm/imx233/pinctrl-imx233.h | |||
@@ -51,6 +51,8 @@ | |||
51 | #define PINCTRL_DRIVE_12mA 2 | 51 | #define PINCTRL_DRIVE_12mA 2 |
52 | #define PINCTRL_DRIVE_16mA 3 /* not available on all pins */ | 52 | #define PINCTRL_DRIVE_16mA 3 /* not available on all pins */ |
53 | 53 | ||
54 | typedef void (*pin_irq_cb_t)(int bank, int pin); | ||
55 | |||
54 | static inline void imx233_pinctrl_init(void) | 56 | static inline void imx233_pinctrl_init(void) |
55 | { | 57 | { |
56 | __REG_CLR(HW_PINCTRL_CTRL) = __BLOCK_CLKGATE | __BLOCK_SFTRST; | 58 | __REG_CLR(HW_PINCTRL_CTRL) = __BLOCK_CLKGATE | __BLOCK_SFTRST; |
@@ -121,4 +123,9 @@ static inline void imx233_enable_pin_pullup_mask(unsigned bank, uint32_t pin_msk | |||
121 | __REG_CLR(HW_PINCTRL_PULL(bank)) = pin_msk; | 123 | __REG_CLR(HW_PINCTRL_PULL(bank)) = pin_msk; |
122 | } | 124 | } |
123 | 125 | ||
126 | /** On irq, the pin irq interrupt is disable and then cb is called; | ||
127 | * the setup_pin_irq function needs to be called again to enable it again */ | ||
128 | void imx233_setup_pin_irq(int bank, int pin, bool enable_int, | ||
129 | bool level, bool polarity, pin_irq_cb_t cb); | ||
130 | |||
124 | #endif /* __PINCTRL_IMX233_H__ */ | 131 | #endif /* __PINCTRL_IMX233_H__ */ |