~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/omap-gpmc.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  *  OMAP GPMC (General Purpose Memory Controller) defines
  4  */
  5 
  6 #include <linux/platform_data/gpmc-omap.h>
  7 
  8 #define GPMC_CONFIG_WP          0x00000005
  9 
 10 /* IRQ numbers in GPMC IRQ domain for legacy boot use */
 11 #define GPMC_IRQ_FIFOEVENTENABLE        0
 12 #define GPMC_IRQ_COUNT_EVENT            1
 13 
 14 /**
 15  * gpmc_nand_ops - Interface between NAND and GPMC
 16  * @nand_write_buffer_empty: get the NAND write buffer empty status.
 17  */
 18 struct gpmc_nand_ops {
 19         bool (*nand_writebuffer_empty)(void);
 20 };
 21 
 22 struct gpmc_nand_regs;
 23 
 24 struct gpmc_onenand_info {
 25         bool sync_read;
 26         bool sync_write;
 27         int burst_len;
 28 };
 29 
 30 #if IS_ENABLED(CONFIG_OMAP_GPMC)
 31 struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
 32                                              int cs);
 33 /**
 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  */
 43 int gpmc_omap_onenand_set_timings(struct device *dev, int cs, int freq,
 44                                   int latency,
 45                                   struct gpmc_onenand_info *info);
 46 
 47 #else
 48 static inline struct gpmc_nand_ops *gpmc_omap_get_nand_ops(struct gpmc_nand_regs *regs,
 49                                                            int cs)
 50 {
 51         return NULL;
 52 }
 53 
 54 static inline
 55 int 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 }
 61 #endif /* CONFIG_OMAP_GPMC */
 62 
 63 extern int gpmc_calc_timings(struct gpmc_timings *gpmc_t,
 64                              struct gpmc_settings *gpmc_s,
 65                              struct gpmc_device_timings *dev_t);
 66 
 67 struct device_node;
 68 
 69 extern int gpmc_get_client_irq(unsigned irq_config);
 70 
 71 extern unsigned int gpmc_ticks_to_ns(unsigned int ticks);
 72 
 73 extern void gpmc_cs_write_reg(int cs, int idx, u32 val);
 74 extern int gpmc_calc_divider(unsigned int sync_clk);
 75 extern int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t,
 76                                const struct gpmc_settings *s);
 77 extern int gpmc_cs_program_settings(int cs, struct gpmc_settings *p);
 78 extern int gpmc_cs_request(int cs, unsigned long size, unsigned long *base);
 79 extern void gpmc_cs_free(int cs);
 80 extern int gpmc_configure(int cmd, int wval);
 81 extern void gpmc_read_settings_dt(struct device_node *np,
 82                                   struct gpmc_settings *p);
 83 
 84 struct gpmc_timings;
 85 struct omap_nand_platform_data;
 86 struct omap_onenand_platform_data;
 87 
 88 #if IS_ENABLED(CONFIG_MTD_ONENAND_OMAP2)
 89 extern int gpmc_onenand_init(struct omap_onenand_platform_data *d);
 90 #else
 91 #define board_onenand_data      NULL
 92 static inline int gpmc_onenand_init(struct omap_onenand_platform_data *d)
 93 {
 94         return 0;
 95 }
 96 #endif
 97 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php