mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 09:31:14 +00:00
ARM: OMAP2+: Drop gpio platform data for omap4
We can now drop legacy platform data one interconnect target module at a time in favor of the device tree based data that has been added earlier. Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
f9d34da303
commit
e1c59a3bf6
1 changed files with 0 additions and 207 deletions
|
@ -1052,159 +1052,6 @@ static struct omap_hwmod omap44xx_fdif_hwmod = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* 'gpio' class
|
|
||||||
* general purpose io module
|
|
||||||
*/
|
|
||||||
|
|
||||||
static struct omap_hwmod_class_sysconfig omap44xx_gpio_sysc = {
|
|
||||||
.rev_offs = 0x0000,
|
|
||||||
.sysc_offs = 0x0010,
|
|
||||||
.syss_offs = 0x0114,
|
|
||||||
.sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_ENAWAKEUP |
|
|
||||||
SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET |
|
|
||||||
SYSS_HAS_RESET_STATUS),
|
|
||||||
.idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
|
|
||||||
SIDLE_SMART_WKUP),
|
|
||||||
.sysc_fields = &omap_hwmod_sysc_type1,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod_class omap44xx_gpio_hwmod_class = {
|
|
||||||
.name = "gpio",
|
|
||||||
.sysc = &omap44xx_gpio_sysc,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio1 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio1_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio1_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio1_hwmod = {
|
|
||||||
.name = "gpio1",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_wkup_clkdm",
|
|
||||||
.main_clk = "l4_wkup_clk_mux_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_WKUP_GPIO1_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_WKUP_GPIO1_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio1_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio1_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio2 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio2_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio2_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio2_hwmod = {
|
|
||||||
.name = "gpio2",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_per_clkdm",
|
|
||||||
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
|
|
||||||
.main_clk = "l4_div_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_L4PER_GPIO2_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_L4PER_GPIO2_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio2_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio2_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio3 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio3_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio3_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio3_hwmod = {
|
|
||||||
.name = "gpio3",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_per_clkdm",
|
|
||||||
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
|
|
||||||
.main_clk = "l4_div_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_L4PER_GPIO3_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_L4PER_GPIO3_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio3_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio3_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio4 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio4_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio4_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio4_hwmod = {
|
|
||||||
.name = "gpio4",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_per_clkdm",
|
|
||||||
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
|
|
||||||
.main_clk = "l4_div_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_L4PER_GPIO4_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_L4PER_GPIO4_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio4_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio4_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio5 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio5_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio5_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio5_hwmod = {
|
|
||||||
.name = "gpio5",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_per_clkdm",
|
|
||||||
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
|
|
||||||
.main_clk = "l4_div_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_L4PER_GPIO5_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_L4PER_GPIO5_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio5_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio5_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/* gpio6 */
|
|
||||||
static struct omap_hwmod_opt_clk gpio6_opt_clks[] = {
|
|
||||||
{ .role = "dbclk", .clk = "gpio6_dbclk" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_hwmod omap44xx_gpio6_hwmod = {
|
|
||||||
.name = "gpio6",
|
|
||||||
.class = &omap44xx_gpio_hwmod_class,
|
|
||||||
.clkdm_name = "l4_per_clkdm",
|
|
||||||
.flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET,
|
|
||||||
.main_clk = "l4_div_ck",
|
|
||||||
.prcm = {
|
|
||||||
.omap4 = {
|
|
||||||
.clkctrl_offs = OMAP4_CM_L4PER_GPIO6_CLKCTRL_OFFSET,
|
|
||||||
.context_offs = OMAP4_RM_L4PER_GPIO6_CONTEXT_OFFSET,
|
|
||||||
.modulemode = MODULEMODE_HWCTRL,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
.opt_clks = gpio6_opt_clks,
|
|
||||||
.opt_clks_cnt = ARRAY_SIZE(gpio6_opt_clks),
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 'gpmc' class
|
* 'gpmc' class
|
||||||
* general purpose memory controller
|
* general purpose memory controller
|
||||||
|
@ -3343,54 +3190,6 @@ static struct omap_hwmod_ocp_if omap44xx_l4_cfg__fdif = {
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* l4_wkup -> gpio1 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_wkup__gpio1 = {
|
|
||||||
.master = &omap44xx_l4_wkup_hwmod,
|
|
||||||
.slave = &omap44xx_gpio1_hwmod,
|
|
||||||
.clk = "l4_wkup_clk_mux_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l4_per -> gpio2 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_per__gpio2 = {
|
|
||||||
.master = &omap44xx_l4_per_hwmod,
|
|
||||||
.slave = &omap44xx_gpio2_hwmod,
|
|
||||||
.clk = "l4_div_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l4_per -> gpio3 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_per__gpio3 = {
|
|
||||||
.master = &omap44xx_l4_per_hwmod,
|
|
||||||
.slave = &omap44xx_gpio3_hwmod,
|
|
||||||
.clk = "l4_div_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l4_per -> gpio4 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_per__gpio4 = {
|
|
||||||
.master = &omap44xx_l4_per_hwmod,
|
|
||||||
.slave = &omap44xx_gpio4_hwmod,
|
|
||||||
.clk = "l4_div_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l4_per -> gpio5 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_per__gpio5 = {
|
|
||||||
.master = &omap44xx_l4_per_hwmod,
|
|
||||||
.slave = &omap44xx_gpio5_hwmod,
|
|
||||||
.clk = "l4_div_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l4_per -> gpio6 */
|
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l4_per__gpio6 = {
|
|
||||||
.master = &omap44xx_l4_per_hwmod,
|
|
||||||
.slave = &omap44xx_gpio6_hwmod,
|
|
||||||
.clk = "l4_div_ck",
|
|
||||||
.user = OCP_USER_MPU | OCP_USER_SDMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* l3_main_2 -> gpmc */
|
/* l3_main_2 -> gpmc */
|
||||||
static struct omap_hwmod_ocp_if omap44xx_l3_main_2__gpmc = {
|
static struct omap_hwmod_ocp_if omap44xx_l3_main_2__gpmc = {
|
||||||
.master = &omap44xx_l3_main_2_hwmod,
|
.master = &omap44xx_l3_main_2_hwmod,
|
||||||
|
@ -3937,12 +3736,6 @@ static struct omap_hwmod_ocp_if *omap44xx_hwmod_ocp_ifs[] __initdata = {
|
||||||
&omap44xx_l4_per__dss_venc,
|
&omap44xx_l4_per__dss_venc,
|
||||||
&omap44xx_l4_per__elm,
|
&omap44xx_l4_per__elm,
|
||||||
&omap44xx_l4_cfg__fdif,
|
&omap44xx_l4_cfg__fdif,
|
||||||
&omap44xx_l4_wkup__gpio1,
|
|
||||||
&omap44xx_l4_per__gpio2,
|
|
||||||
&omap44xx_l4_per__gpio3,
|
|
||||||
&omap44xx_l4_per__gpio4,
|
|
||||||
&omap44xx_l4_per__gpio5,
|
|
||||||
&omap44xx_l4_per__gpio6,
|
|
||||||
&omap44xx_l3_main_2__gpmc,
|
&omap44xx_l3_main_2__gpmc,
|
||||||
&omap44xx_l3_main_2__gpu,
|
&omap44xx_l3_main_2__gpu,
|
||||||
&omap44xx_l4_per__hdq1w,
|
&omap44xx_l4_per__hdq1w,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue