blob: edfa280c3d5609c2cbf34ef03e762083057913c9 [file] [log] [blame]
Tony Lindgrene639cd52014-11-20 12:11:25 -08001/*
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 Quadros58bc67f2015-07-10 15:23:28 +030010#include <linux/platform_data/gpmc-omap.h>
Tony Lindgrene639cd52014-11-20 12:11:25 -080011
12#define GPMC_CONFIG_WP 0x00000005
13
Roger Quadros384258f2015-07-30 14:49:23 +030014/* IRQ numbers in GPMC IRQ domain for legacy boot use */
15#define GPMC_IRQ_FIFOEVENTENABLE 0
16#define GPMC_IRQ_COUNT_EVENT 1
Tony Lindgrene639cd52014-11-20 12:11:25 -080017
Roger Quadrosf47fcad2015-08-05 13:58:01 +030018/**
19 * gpmc_nand_ops - Interface between NAND and GPMC
20 * @nand_write_buffer_empty: get the NAND write buffer empty status.
21 */
22struct gpmc_nand_ops {
23 bool (*nand_writebuffer_empty)(void);
24};
25
26struct gpmc_nand_regs;
27
28#if IS_ENABLED(CONFIG_OMAP_GPMC)
29struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
30 int cs);
31#else
Roger Quadros0680b0c2016-08-24 12:10:17 +030032static inline struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
33 int cs)
Roger Quadrosf47fcad2015-08-05 13:58:01 +030034{
35 return NULL;
36}
37#endif /* CONFIG_OMAP_GPMC */
38
Tony Lindgrene639cd52014-11-20 12:11:25 -080039extern int gpmc_calc_timings(struct gpmc_timings *gpmc_t,
40 struct gpmc_settings *gpmc_s,
41 struct gpmc_device_timings *dev_t);
42
Tony Lindgrene639cd52014-11-20 12:11:25 -080043struct device_node;
44
Tony Lindgrene639cd52014-11-20 12:11:25 -080045extern int gpmc_get_client_irq(unsigned irq_config);
46
47extern unsigned int gpmc_ticks_to_ns(unsigned int ticks);
48
49extern void gpmc_cs_write_reg(int cs, int idx, u32 val);
50extern int gpmc_calc_divider(unsigned int sync_clk);
Robert ABEL2e676902015-02-27 16:56:53 +010051extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t,
52 const struct gpmc_settings *s);
Tony Lindgrene639cd52014-11-20 12:11:25 -080053extern int gpmc_cs_program_settings(int cs, struct gpmc_settings *p);
54extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base);
55extern void gpmc_cs_free(int cs);
56extern int gpmc_configure(int cmd, int wval);
57extern void gpmc_read_settings_dt(struct device_node *np,
58 struct gpmc_settings *p);
59
60extern void omap3_gpmc_save_context(void);
61extern void omap3_gpmc_restore_context(void);
62
63struct gpmc_timings;
64struct omap_nand_platform_data;
65struct omap_onenand_platform_data;
66
Tony Lindgrene639cd52014-11-20 12:11:25 -080067#if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2)
Ladislav Michl7807e082017-02-11 14:02:49 +010068extern int gpmc_onenand_init(struct omap_onenand_platform_data *d);
Tony Lindgrene639cd52014-11-20 12:11:25 -080069#else
70#define board_onenand_data NULL
Ladislav Michl7807e082017-02-11 14:02:49 +010071static inline int gpmc_onenand_init(struct omap_onenand_platform_data *d)
Tony Lindgrene639cd52014-11-20 12:11:25 -080072{
Ladislav Michl7807e082017-02-11 14:02:49 +010073 return 0;
Tony Lindgrene639cd52014-11-20 12:11:25 -080074}
75#endif