blob: b7bf735960c24e5820ea9876b3a641ce7498a056 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Tony Lindgrene639cd52014-11-20 12:11:25 -08002/*
3 * OMAP GPMC (General Purpose Memory Controller) defines
Tony Lindgrene639cd52014-11-20 12:11:25 -08004 */
5
Roger Quadros58bc67f2015-07-10 15:23:28 +03006#include <linux/platform_data/gpmc-omap.h>
Tony Lindgrene639cd52014-11-20 12:11:25 -08007
8#define GPMC_CONFIG_WP 0x00000005
9
Roger Quadros384258f2015-07-30 14:49:23 +030010/* IRQ numbers in GPMC IRQ domain for legacy boot use */
11#define GPMC_IRQ_FIFOEVENTENABLE 0
12#define GPMC_IRQ_COUNT_EVENT 1
Tony Lindgrene639cd52014-11-20 12:11:25 -080013
Roger Quadrosf47fcad2015-08-05 13:58:01 +030014/**
15 * gpmc_nand_ops - Interface between NAND and GPMC
16 * @nand_write_buffer_empty: get the NAND write buffer empty status.
17 */
18struct gpmc_nand_ops {
19 bool (*nand_writebuffer_empty)(void);
20};
21
22struct gpmc_nand_regs;
23
Ladislav Michla758f502018-01-12 14:17:25 +010024struct gpmc_onenand_info {
25 bool sync_read;
26 bool sync_write;
27 int burst_len;
28};
29
Roger Quadrosf47fcad2015-08-05 13:58:01 +030030#if IS_ENABLED(CONFIG_OMAP_GPMC)
31struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
32 int cs);
Ladislav Michla758f502018-01-12 14:17:25 +010033/**
34 * gpmc_omap_onenand_set_timings - set optimized sync timings.
35 * @cs: Chip Select Region
36 * @freq: Chip frequency
37 * @latency: Burst latency cycle count
38 * @info: Structure describing parameters used
39 *
40 * Sets optimized timings for the @cs region based on @freq and @latency.
41 * Updates the @info structure based on the GPMC settings.
42 */
43int gpmc_omap_onenand_set_timings(struct device *dev, int cs, int freq,
44 int latency,
45 struct gpmc_onenand_info *info);
46
Roger Quadrosf47fcad2015-08-05 13:58:01 +030047#else
Roger Quadros0680b0c2016-08-24 12:10:17 +030048static inline struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
49 int cs)
Roger Quadrosf47fcad2015-08-05 13:58:01 +030050{
51 return NULL;
52}
Ladislav Michla758f502018-01-12 14:17:25 +010053
54static inline
55int gpmc_omap_onenand_set_timings(struct device *dev, int cs, int freq,
56 int latency,
57 struct gpmc_onenand_info *info)
58{
59 return -EINVAL;
60}
Roger Quadrosf47fcad2015-08-05 13:58:01 +030061#endif /* CONFIG_OMAP_GPMC */
62
Tony Lindgrene639cd52014-11-20 12:11:25 -080063extern int gpmc_calc_timings(struct gpmc_timings *gpmc_t,
64 struct gpmc_settings *gpmc_s,
65 struct gpmc_device_timings *dev_t);
66
Tony Lindgrene639cd52014-11-20 12:11:25 -080067struct device_node;
68
Tony Lindgrene639cd52014-11-20 12:11:25 -080069extern int gpmc_get_client_irq(unsigned irq_config);
70
71extern unsigned int gpmc_ticks_to_ns(unsigned int ticks);
72
73extern void gpmc_cs_write_reg(int cs, int idx, u32 val);
74extern int gpmc_calc_divider(unsigned int sync_clk);
Robert ABEL2e676902015-02-27 16:56:53 +010075extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t,
76 const struct gpmc_settings *s);
Tony Lindgrene639cd52014-11-20 12:11:25 -080077extern int gpmc_cs_program_settings(int cs, struct gpmc_settings *p);
78extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base);
79extern void gpmc_cs_free(int cs);
80extern int gpmc_configure(int cmd, int wval);
81extern void gpmc_read_settings_dt(struct device_node *np,
82 struct gpmc_settings *p);
83
84extern void omap3_gpmc_save_context(void);
85extern void omap3_gpmc_restore_context(void);
86
87struct gpmc_timings;
88struct omap_nand_platform_data;
89struct omap_onenand_platform_data;
90
Tony Lindgrene639cd52014-11-20 12:11:25 -080091#if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2)
Ladislav Michl7807e082017-02-11 14:02:49 +010092extern int gpmc_onenand_init(struct omap_onenand_platform_data *d);
Tony Lindgrene639cd52014-11-20 12:11:25 -080093#else
94#define board_onenand_data NULL
Ladislav Michl7807e082017-02-11 14:02:49 +010095static inline int gpmc_onenand_init(struct omap_onenand_platform_data *d)
Tony Lindgrene639cd52014-11-20 12:11:25 -080096{
Ladislav Michl7807e082017-02-11 14:02:49 +010097 return 0;
Tony Lindgrene639cd52014-11-20 12:11:25 -080098}
99#endif