Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 1 | /* |
| 2 | * OMAP GPMC (General Purpose Memory Controller) defines |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the |
| 6 | * Free Software Foundation; either version 2 of the License, or (at your |
| 7 | * option) any later version. |
| 8 | */ |
| 9 | |
Roger Quadros | 58bc67f | 2015-07-10 15:23:28 +0300 | [diff] [blame] | 10 | #include <linux/platform_data/gpmc-omap.h> |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 11 | |
| 12 | #define GPMC_CONFIG_WP 0x00000005 |
| 13 | |
Roger Quadros | 384258f | 2015-07-30 14:49:23 +0300 | [diff] [blame] | 14 | /* IRQ numbers in GPMC IRQ domain for legacy boot use */ |
| 15 | #define GPMC_IRQ_FIFOEVENTENABLE 0 |
| 16 | #define GPMC_IRQ_COUNT_EVENT 1 |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 17 | |
Roger Quadros | f47fcad | 2015-08-05 13:58:01 +0300 | [diff] [blame] | 18 | /** |
| 19 | * gpmc_nand_ops - Interface between NAND and GPMC |
| 20 | * @nand_write_buffer_empty: get the NAND write buffer empty status. |
| 21 | */ |
| 22 | struct gpmc_nand_ops { |
| 23 | bool (*nand_writebuffer_empty)(void); |
| 24 | }; |
| 25 | |
| 26 | struct gpmc_nand_regs; |
| 27 | |
Ladislav Michl | a758f50 | 2018-01-12 14:17:25 +0100 | [diff] [blame] | 28 | struct gpmc_onenand_info { |
| 29 | bool sync_read; |
| 30 | bool sync_write; |
| 31 | int burst_len; |
| 32 | }; |
| 33 | |
Roger Quadros | f47fcad | 2015-08-05 13:58:01 +0300 | [diff] [blame] | 34 | #if IS_ENABLED(CONFIG_OMAP_GPMC) |
| 35 | struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs, |
| 36 | int cs); |
Ladislav Michl | a758f50 | 2018-01-12 14:17:25 +0100 | [diff] [blame] | 37 | /** |
| 38 | * gpmc_omap_onenand_set_timings - set optimized sync timings. |
| 39 | * @cs: Chip Select Region |
| 40 | * @freq: Chip frequency |
| 41 | * @latency: Burst latency cycle count |
| 42 | * @info: Structure describing parameters used |
| 43 | * |
| 44 | * Sets optimized timings for the @cs region based on @freq and @latency. |
| 45 | * Updates the @info structure based on the GPMC settings. |
| 46 | */ |
| 47 | int gpmc_omap_onenand_set_timings(struct device *dev, int cs, int freq, |
| 48 | int latency, |
| 49 | struct gpmc_onenand_info *info); |
| 50 | |
Roger Quadros | f47fcad | 2015-08-05 13:58:01 +0300 | [diff] [blame] | 51 | #else |
Roger Quadros | 0680b0c | 2016-08-24 12:10:17 +0300 | [diff] [blame] | 52 | static inline struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs, |
| 53 | int cs) |
Roger Quadros | f47fcad | 2015-08-05 13:58:01 +0300 | [diff] [blame] | 54 | { |
| 55 | return NULL; |
| 56 | } |
Ladislav Michl | a758f50 | 2018-01-12 14:17:25 +0100 | [diff] [blame] | 57 | |
| 58 | static inline |
| 59 | int gpmc_omap_onenand_set_timings(struct device *dev, int cs, int freq, |
| 60 | int latency, |
| 61 | struct gpmc_onenand_info *info) |
| 62 | { |
| 63 | return -EINVAL; |
| 64 | } |
Roger Quadros | f47fcad | 2015-08-05 13:58:01 +0300 | [diff] [blame] | 65 | #endif /* CONFIG_OMAP_GPMC */ |
| 66 | |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 67 | extern int gpmc_calc_timings(struct gpmc_timings *gpmc_t, |
| 68 | struct gpmc_settings *gpmc_s, |
| 69 | struct gpmc_device_timings *dev_t); |
| 70 | |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 71 | struct device_node; |
| 72 | |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 73 | extern int gpmc_get_client_irq(unsigned irq_config); |
| 74 | |
| 75 | extern unsigned int gpmc_ticks_to_ns(unsigned int ticks); |
| 76 | |
| 77 | extern void gpmc_cs_write_reg(int cs, int idx, u32 val); |
| 78 | extern int gpmc_calc_divider(unsigned int sync_clk); |
Robert ABEL | 2e67690 | 2015-02-27 16:56:53 +0100 | [diff] [blame] | 79 | extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t, |
| 80 | const struct gpmc_settings *s); |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 81 | extern int gpmc_cs_program_settings(int cs, struct gpmc_settings *p); |
| 82 | extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base); |
| 83 | extern void gpmc_cs_free(int cs); |
| 84 | extern int gpmc_configure(int cmd, int wval); |
| 85 | extern void gpmc_read_settings_dt(struct device_node *np, |
| 86 | struct gpmc_settings *p); |
| 87 | |
| 88 | extern void omap3_gpmc_save_context(void); |
| 89 | extern void omap3_gpmc_restore_context(void); |
| 90 | |
| 91 | struct gpmc_timings; |
| 92 | struct omap_nand_platform_data; |
| 93 | struct omap_onenand_platform_data; |
| 94 | |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 95 | #if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2) |
Ladislav Michl | 7807e08 | 2017-02-11 14:02:49 +0100 | [diff] [blame] | 96 | extern int gpmc_onenand_init(struct omap_onenand_platform_data *d); |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 97 | #else |
| 98 | #define board_onenand_data NULL |
Ladislav Michl | 7807e08 | 2017-02-11 14:02:49 +0100 | [diff] [blame] | 99 | static inline int gpmc_onenand_init(struct omap_onenand_platform_data *d) |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 100 | { |
Ladislav Michl | 7807e08 | 2017-02-11 14:02:49 +0100 | [diff] [blame] | 101 | return 0; |
Tony Lindgren | e639cd5 | 2014-11-20 12:11:25 -0800 | [diff] [blame] | 102 | } |
| 103 | #endif |