blob: 423dd76bb6b812e408f106e2367386820b13a8a4 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * Copyright 2004-2014 Freescale Semiconductor, Inc. All Rights Reserved.
3 */
4
5/*
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __ASM_ARCH_MXC_COMMON_H__
12#define __ASM_ARCH_MXC_COMMON_H__
13
14#include <linux/reboot.h>
15
16struct irq_data;
17struct platform_device;
18struct pt_regs;
19struct clk;
20struct device_node;
21enum mxc_cpu_pwr_mode;
22struct of_device_id;
23
24void mx21_map_io(void);
25void mx27_map_io(void);
26void mx31_map_io(void);
27void mx35_map_io(void);
28void imx21_init_early(void);
29void imx27_init_early(void);
30void imx31_init_early(void);
31void imx35_init_early(void);
32void mxc_init_irq(void __iomem *);
33void mx21_init_irq(void);
34void mx27_init_irq(void);
35void mx31_init_irq(void);
36void mx35_init_irq(void);
37void imx21_soc_init(void);
38void imx27_soc_init(void);
39void imx31_soc_init(void);
40void imx35_soc_init(void);
41int mx21_clocks_init(unsigned long lref, unsigned long fref);
42int mx27_clocks_init(unsigned long fref);
43int mx31_clocks_init(unsigned long fref);
44int mx35_clocks_init(void);
45struct platform_device *mxc_register_gpio(char *name, int id,
46 resource_size_t iobase, resource_size_t iosize, int irq, int irq_high);
47void mxc_set_cpu_type(unsigned int type);
48void mxc_restart(enum reboot_mode, const char *);
49void mxc_arch_reset_init(void __iomem *);
50void imx1_reset_init(void __iomem *);
51void imx_set_aips(void __iomem *);
52void imx_aips_allow_unprivileged_access(const char *compat);
53int mxc_device_init(void);
54void imx_set_soc_revision(unsigned int rev);
55void imx_init_revision_from_anatop(void);
56struct device *imx_soc_device_init(void);
57void imx6_enable_rbc(bool enable);
58void imx_gpc_check_dt(void);
59void imx_gpc_set_arm_power_in_lpm(bool power_off);
60void imx_gpc_set_l2_mem_power_in_lpm(bool power_off);
61void imx_gpc_set_arm_power_up_timing(u32 sw2iso, u32 sw);
62void imx_gpc_set_arm_power_down_timing(u32 sw2iso, u32 sw);
63void imx25_pm_init(void);
64void imx27_pm_init(void);
65void imx5_pmu_init(void);
66
67enum mxc_cpu_pwr_mode {
68 WAIT_CLOCKED, /* wfi only */
69 WAIT_UNCLOCKED, /* WAIT */
70 WAIT_UNCLOCKED_POWER_OFF, /* WAIT + SRPG */
71 STOP_POWER_ON, /* just STOP */
72 STOP_POWER_OFF, /* STOP + SRPG */
73};
74
75void imx_enable_cpu(int cpu, bool enable);
76void imx_set_cpu_jump(int cpu, void *jump_addr);
77u32 imx_get_cpu_arg(int cpu);
78void imx_set_cpu_arg(int cpu, u32 arg);
79#ifdef CONFIG_SMP
80void v7_secondary_startup(void);
81void imx_scu_map_io(void);
82void imx_smp_prepare(void);
83#else
84static inline void imx_scu_map_io(void) {}
85static inline void imx_smp_prepare(void) {}
86#endif
87void imx_src_init(void);
88void imx_gpc_pre_suspend(bool arm_power_off);
89void imx_gpc_post_resume(void);
90void imx_gpc_mask_all(void);
91void imx_gpc_restore_all(void);
92void imx_gpc_hwirq_mask(unsigned int hwirq);
93void imx_gpc_hwirq_unmask(unsigned int hwirq);
94void imx_anatop_init(void);
95void imx_anatop_pre_suspend(void);
96void imx_anatop_post_resume(void);
97int imx6_set_lpm(enum mxc_cpu_pwr_mode mode);
98void imx6_set_int_mem_clk_lpm(bool enable);
99void imx6sl_set_wait_clk(bool enter);
100int imx_mmdc_get_ddr_type(void);
101
102void imx_cpu_die(unsigned int cpu);
103int imx_cpu_kill(unsigned int cpu);
104
105#ifdef CONFIG_SUSPEND
106void v7_cpu_resume(void);
107void imx53_suspend(void __iomem *ocram_vbase);
108extern const u32 imx53_suspend_sz;
109void imx6_suspend(void __iomem *ocram_vbase);
110#else
111static inline void v7_cpu_resume(void) {}
112static inline void imx53_suspend(void __iomem *ocram_vbase) {}
113static const u32 imx53_suspend_sz;
114static inline void imx6_suspend(void __iomem *ocram_vbase) {}
115#endif
116
117void imx6_pm_ccm_init(const char *ccm_compat);
118void imx6q_pm_init(void);
119void imx6dl_pm_init(void);
120void imx6sl_pm_init(void);
121void imx6sx_pm_init(void);
122void imx6ul_pm_init(void);
123
124#ifdef CONFIG_PM
125void imx51_pm_init(void);
126void imx53_pm_init(void);
127#else
128static inline void imx51_pm_init(void) {}
129static inline void imx53_pm_init(void) {}
130#endif
131
132#ifdef CONFIG_NEON
133int mx51_neon_fixup(void);
134#else
135static inline int mx51_neon_fixup(void) { return 0; }
136#endif
137
138#ifdef CONFIG_CACHE_L2X0
139void imx_init_l2cache(void);
140#else
141static inline void imx_init_l2cache(void) {}
142#endif
143
144extern const struct smp_operations imx_smp_ops;
145extern const struct smp_operations ls1021a_smp_ops;
146
147#endif