149a0a3d8STony Lindgren #ifndef __TI_SYSC_DATA_H__ 249a0a3d8STony Lindgren #define __TI_SYSC_DATA_H__ 349a0a3d8STony Lindgren 470a65240STony Lindgren enum ti_sysc_module_type { 570a65240STony Lindgren TI_SYSC_OMAP2, 670a65240STony Lindgren TI_SYSC_OMAP2_TIMER, 770a65240STony Lindgren TI_SYSC_OMAP3_SHAM, 870a65240STony Lindgren TI_SYSC_OMAP3_AES, 970a65240STony Lindgren TI_SYSC_OMAP4, 1070a65240STony Lindgren TI_SYSC_OMAP4_TIMER, 1170a65240STony Lindgren TI_SYSC_OMAP4_SIMPLE, 1270a65240STony Lindgren TI_SYSC_OMAP34XX_SR, 1370a65240STony Lindgren TI_SYSC_OMAP36XX_SR, 1470a65240STony Lindgren TI_SYSC_OMAP4_SR, 1570a65240STony Lindgren TI_SYSC_OMAP4_MCASP, 1670a65240STony Lindgren TI_SYSC_OMAP4_USB_HOST_FS, 17*7f35e63dSFaiz Abbas TI_SYSC_DRA7_MCAN, 1870a65240STony Lindgren }; 1970a65240STony Lindgren 20ef70b0bdSTony Lindgren struct ti_sysc_cookie { 21ef70b0bdSTony Lindgren void *data; 22ef70b0bdSTony Lindgren }; 23ef70b0bdSTony Lindgren 2449a0a3d8STony Lindgren /** 2549a0a3d8STony Lindgren * struct sysc_regbits - TI OCP_SYSCONFIG register field offsets 2649a0a3d8STony Lindgren * @midle_shift: Offset of the midle bit 2749a0a3d8STony Lindgren * @clkact_shift: Offset of the clockactivity bit 2849a0a3d8STony Lindgren * @sidle_shift: Offset of the sidle bit 2949a0a3d8STony Lindgren * @enwkup_shift: Offset of the enawakeup bit 3049a0a3d8STony Lindgren * @srst_shift: Offset of the softreset bit 3149a0a3d8STony Lindgren * @autoidle_shift: Offset of the autoidle bit 3249a0a3d8STony Lindgren * @dmadisable_shift: Offset of the dmadisable bit 3349a0a3d8STony Lindgren * @emufree_shift; Offset of the emufree bit 3449a0a3d8STony Lindgren * 3549a0a3d8STony Lindgren * Note that 0 is a valid shift, and for ti-sysc.c -ENODEV can be used if a 3649a0a3d8STony Lindgren * feature is not available. 3749a0a3d8STony Lindgren */ 3849a0a3d8STony Lindgren struct sysc_regbits { 3949a0a3d8STony Lindgren s8 midle_shift; 4049a0a3d8STony Lindgren s8 clkact_shift; 4149a0a3d8STony Lindgren s8 sidle_shift; 4249a0a3d8STony Lindgren s8 enwkup_shift; 4349a0a3d8STony Lindgren s8 srst_shift; 4449a0a3d8STony Lindgren s8 autoidle_shift; 4549a0a3d8STony Lindgren s8 dmadisable_shift; 4649a0a3d8STony Lindgren s8 emufree_shift; 4749a0a3d8STony Lindgren }; 4849a0a3d8STony Lindgren 49e7420c2dSTony Lindgren #define SYSC_QUIRK_RESOURCE_PROVIDER BIT(9) 50a885f0feSTony Lindgren #define SYSC_QUIRK_LEGACY_IDLE BIT(8) 51c5a2de97STony Lindgren #define SYSC_QUIRK_RESET_STATUS BIT(7) 52566a9b05STony Lindgren #define SYSC_QUIRK_NO_IDLE_ON_INIT BIT(6) 53566a9b05STony Lindgren #define SYSC_QUIRK_NO_RESET_ON_INIT BIT(5) 54566a9b05STony Lindgren #define SYSC_QUIRK_OPT_CLKS_NEEDED BIT(4) 55566a9b05STony Lindgren #define SYSC_QUIRK_OPT_CLKS_IN_RESET BIT(3) 56a7199e2bSTony Lindgren #define SYSC_QUIRK_16BIT BIT(2) 5770a65240STony Lindgren #define SYSC_QUIRK_UNCACHED BIT(1) 5870a65240STony Lindgren #define SYSC_QUIRK_USE_CLOCKACT BIT(0) 5970a65240STony Lindgren 60c5a2de97STony Lindgren #define SYSC_NR_IDLEMODES 4 61c5a2de97STony Lindgren 6270a65240STony Lindgren /** 6370a65240STony Lindgren * struct sysc_capabilities - capabilities for an interconnect target module 6470a65240STony Lindgren * 6570a65240STony Lindgren * @sysc_mask: bitmask of supported SYSCONFIG register bits 6670a65240STony Lindgren * @regbits: bitmask of SYSCONFIG register bits 6770a65240STony Lindgren * @mod_quirks: bitmask of module specific quirks 6870a65240STony Lindgren */ 6970a65240STony Lindgren struct sysc_capabilities { 7070a65240STony Lindgren const enum ti_sysc_module_type type; 7170a65240STony Lindgren const u32 sysc_mask; 7270a65240STony Lindgren const struct sysc_regbits *regbits; 7370a65240STony Lindgren const u32 mod_quirks; 7470a65240STony Lindgren }; 7570a65240STony Lindgren 7670a65240STony Lindgren /** 7770a65240STony Lindgren * struct sysc_config - configuration for an interconnect target module 78c5a2de97STony Lindgren * @sysc_val: configured value for sysc register 79c5a2de97STony Lindgren * @midlemodes: bitmask of supported master idle modes 80c5a2de97STony Lindgren * @sidlemodes: bitmask of supported master idle modes 81566a9b05STony Lindgren * @srst_udelay: optional delay needed after OCP soft reset 8270a65240STony Lindgren * @quirks: bitmask of enabled quirks 8370a65240STony Lindgren */ 8470a65240STony Lindgren struct sysc_config { 85c5a2de97STony Lindgren u32 sysc_val; 86c5a2de97STony Lindgren u32 syss_mask; 87c5a2de97STony Lindgren u8 midlemodes; 88c5a2de97STony Lindgren u8 sidlemodes; 89566a9b05STony Lindgren u8 srst_udelay; 9070a65240STony Lindgren u32 quirks; 9170a65240STony Lindgren }; 9270a65240STony Lindgren 93ef70b0bdSTony Lindgren enum sysc_registers { 94ef70b0bdSTony Lindgren SYSC_REVISION, 95ef70b0bdSTony Lindgren SYSC_SYSCONFIG, 96ef70b0bdSTony Lindgren SYSC_SYSSTATUS, 97ef70b0bdSTony Lindgren SYSC_MAX_REGS, 98ef70b0bdSTony Lindgren }; 99ef70b0bdSTony Lindgren 100ef70b0bdSTony Lindgren /** 101ef70b0bdSTony Lindgren * struct ti_sysc_module_data - ti-sysc to hwmod translation data for a module 102ef70b0bdSTony Lindgren * @name: legacy "ti,hwmods" module name 103ef70b0bdSTony Lindgren * @module_pa: physical address of the interconnect target module 104ef70b0bdSTony Lindgren * @module_size: size of the interconnect target module 105ef70b0bdSTony Lindgren * @offsets: array of register offsets as listed in enum sysc_registers 106ef70b0bdSTony Lindgren * @nr_offsets: number of registers 107ef70b0bdSTony Lindgren * @cap: interconnect target module capabilities 108ef70b0bdSTony Lindgren * @cfg: interconnect target module configuration 109ef70b0bdSTony Lindgren * 110ef70b0bdSTony Lindgren * This data is enough to allocate a new struct omap_hwmod_class_sysconfig 111ef70b0bdSTony Lindgren * based on device tree data parsed by ti-sysc driver. 112ef70b0bdSTony Lindgren */ 113ef70b0bdSTony Lindgren struct ti_sysc_module_data { 114ef70b0bdSTony Lindgren const char *name; 115ef70b0bdSTony Lindgren u64 module_pa; 116ef70b0bdSTony Lindgren u32 module_size; 117ef70b0bdSTony Lindgren int *offsets; 118ef70b0bdSTony Lindgren int nr_offsets; 119ef70b0bdSTony Lindgren const struct sysc_capabilities *cap; 120ef70b0bdSTony Lindgren struct sysc_config *cfg; 121ef70b0bdSTony Lindgren }; 122ef70b0bdSTony Lindgren 123ef70b0bdSTony Lindgren struct device; 124ef70b0bdSTony Lindgren 125ef70b0bdSTony Lindgren struct ti_sysc_platform_data { 126ef70b0bdSTony Lindgren struct of_dev_auxdata *auxdata; 127ef70b0bdSTony Lindgren int (*init_module)(struct device *dev, 128ef70b0bdSTony Lindgren const struct ti_sysc_module_data *data, 129ef70b0bdSTony Lindgren struct ti_sysc_cookie *cookie); 130ef70b0bdSTony Lindgren int (*enable_module)(struct device *dev, 131ef70b0bdSTony Lindgren const struct ti_sysc_cookie *cookie); 132ef70b0bdSTony Lindgren int (*idle_module)(struct device *dev, 133ef70b0bdSTony Lindgren const struct ti_sysc_cookie *cookie); 134ef70b0bdSTony Lindgren int (*shutdown_module)(struct device *dev, 135ef70b0bdSTony Lindgren const struct ti_sysc_cookie *cookie); 136ef70b0bdSTony Lindgren }; 137ef70b0bdSTony Lindgren 13849a0a3d8STony Lindgren #endif /* __TI_SYSC_DATA_H__ */ 139