diff options
| author | Eduardo Valentin <eduardo.valentin@nokia.com> | 2009-08-20 09:18:10 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-08-20 15:10:26 -0400 |
| commit | 7aa9ff56cae7a6a4fa2e1a503cc5f8bbd887d6e3 (patch) | |
| tree | a23d22ca7825c35a76f7e52bda742bba051550ab | |
| parent | 44a6311c0a83f682bcf18fae389a1b270df29314 (diff) | |
OMAP: McBSP: Add transmit/receive threshold handler
This patch adds a way to handle transmit/receive threshold.
It export to mcbsp users a callback registration procedure.
Signed-off-by: Eduardo Valentin <eduardo.valentin@nokia.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
| -rw-r--r-- | arch/arm/plat-omap/include/mach/mcbsp.h | 9 | ||||
| -rw-r--r-- | arch/arm/plat-omap/mcbsp.c | 50 |
2 files changed, 59 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/mach/mcbsp.h b/arch/arm/plat-omap/include/mach/mcbsp.h index ceaf9eee61b9..2544aa5bccd3 100644 --- a/arch/arm/plat-omap/include/mach/mcbsp.h +++ b/arch/arm/plat-omap/include/mach/mcbsp.h | |||
| @@ -389,6 +389,15 @@ int omap_mcbsp_init(void); | |||
| 389 | void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config, | 389 | void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config, |
| 390 | int size); | 390 | int size); |
| 391 | void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg * config); | 391 | void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg * config); |
| 392 | #ifdef CONFIG_ARCH_OMAP34XX | ||
| 393 | void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold); | ||
| 394 | void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold); | ||
| 395 | #else | ||
| 396 | static inline void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold) | ||
| 397 | { } | ||
| 398 | static inline void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold) | ||
| 399 | { } | ||
| 400 | #endif | ||
| 392 | int omap_mcbsp_request(unsigned int id); | 401 | int omap_mcbsp_request(unsigned int id); |
| 393 | void omap_mcbsp_free(unsigned int id); | 402 | void omap_mcbsp_free(unsigned int id); |
| 394 | void omap_mcbsp_start(unsigned int id, int tx, int rx); | 403 | void omap_mcbsp_start(unsigned int id, int tx, int rx); |
diff --git a/arch/arm/plat-omap/mcbsp.c b/arch/arm/plat-omap/mcbsp.c index e9dd70320f7d..081f2eace92d 100644 --- a/arch/arm/plat-omap/mcbsp.c +++ b/arch/arm/plat-omap/mcbsp.c | |||
| @@ -198,6 +198,56 @@ void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config) | |||
| 198 | } | 198 | } |
| 199 | EXPORT_SYMBOL(omap_mcbsp_config); | 199 | EXPORT_SYMBOL(omap_mcbsp_config); |
| 200 | 200 | ||
| 201 | #ifdef CONFIG_ARCH_OMAP34XX | ||
| 202 | /* | ||
| 203 | * omap_mcbsp_set_tx_threshold configures how to deal | ||
| 204 | * with transmit threshold. the threshold value and handler can be | ||
| 205 | * configure in here. | ||
| 206 | */ | ||
| 207 | void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold) | ||
| 208 | { | ||
| 209 | struct omap_mcbsp *mcbsp; | ||
| 210 | void __iomem *io_base; | ||
| 211 | |||
| 212 | if (!cpu_is_omap34xx()) | ||
| 213 | return; | ||
| 214 | |||
| 215 | if (!omap_mcbsp_check_valid_id(id)) { | ||
| 216 | printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1); | ||
| 217 | return; | ||
| 218 | } | ||
| 219 | mcbsp = id_to_mcbsp_ptr(id); | ||
| 220 | io_base = mcbsp->io_base; | ||
| 221 | |||
| 222 | OMAP_MCBSP_WRITE(io_base, THRSH2, threshold); | ||
| 223 | } | ||
| 224 | EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold); | ||
| 225 | |||
| 226 | /* | ||
| 227 | * omap_mcbsp_set_rx_threshold configures how to deal | ||
| 228 | * with receive threshold. the threshold value and handler can be | ||
| 229 | * configure in here. | ||
| 230 | */ | ||
| 231 | void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold) | ||
| 232 | { | ||
| 233 | struct omap_mcbsp *mcbsp; | ||
| 234 | void __iomem *io_base; | ||
| 235 | |||
| 236 | if (!cpu_is_omap34xx()) | ||
| 237 | return; | ||
| 238 | |||
| 239 | if (!omap_mcbsp_check_valid_id(id)) { | ||
| 240 | printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1); | ||
| 241 | return; | ||
| 242 | } | ||
| 243 | mcbsp = id_to_mcbsp_ptr(id); | ||
| 244 | io_base = mcbsp->io_base; | ||
| 245 | |||
| 246 | OMAP_MCBSP_WRITE(io_base, THRSH1, threshold); | ||
| 247 | } | ||
| 248 | EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold); | ||
| 249 | #endif | ||
| 250 | |||
| 201 | /* | 251 | /* |
| 202 | * We can choose between IRQ based or polled IO. | 252 | * We can choose between IRQ based or polled IO. |
| 203 | * This needs to be called before omap_mcbsp_request(). | 253 | * This needs to be called before omap_mcbsp_request(). |
