1 /*
2  * (C) Copyright 2010
3  * Texas Instruments, <www.ti.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #ifndef _SYS_PROTO_H_
9 #define _SYS_PROTO_H_
10 
11 #include <asm/arch/omap.h>
12 #include <asm/io.h>
13 #include <asm/arch/clock.h>
14 #include <asm/omap_common.h>
15 #include <linux/mtd/omap_gpmc.h>
16 #include <asm/arch/clock.h>
17 #include <asm/ti-common/sys_proto.h>
18 
19 /*
20  * Structure for Iodelay configuration registers.
21  * Theoretical max for g_delay is 21560 ps.
22  * Theoretical max for a_delay is 1/3rd of g_delay max.
23  * So using u16 for both a/g_delay.
24  */
25 struct iodelay_cfg_entry {
26 	u16 offset;
27 	u16 a_delay;
28 	u16 g_delay;
29 };
30 
31 struct pad_conf_entry {
32 	u32 offset;
33 	u32 val;
34 };
35 
36 struct mmc_platform_fixups {
37 	const char *hw_rev;
38 	u32 unsupported_caps;
39 	u32 max_freq;
40 };
41 
42 struct omap_sysinfo {
43 	char *board_string;
44 };
45 extern const struct omap_sysinfo sysinfo;
46 
47 void gpmc_init(void);
48 void watchdog_init(void);
49 u32 get_device_type(void);
50 void do_set_mux(u32 base, struct pad_conf_entry const *array, int size);
51 void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size);
52 void set_muxconf_regs(void);
53 u32 wait_on_value(u32, u32, void *, u32);
54 void sdelay(unsigned long);
55 void setup_early_clocks(void);
56 void prcm_init(void);
57 void do_board_detect(void);
58 void vcores_init(void);
59 void bypass_dpll(u32 const base);
60 void freq_update_core(void);
61 u32 get_sys_clk_freq(void);
62 u32 omap5_ddr_clk(void);
63 void cancel_out(u32 *num, u32 *den, u32 den_limit);
64 void sdram_init(void);
65 u32 omap_sdram_size(void);
66 u32 cortex_rev(void);
67 void save_omap_boot_params(void);
68 void init_omap_revision(void);
69 void init_package_revision(void);
70 void do_io_settings(void);
71 void sri2c_init(void);
72 int omap_vc_bypass_send_value(u8 sa, u8 reg_addr, u8 reg_data);
73 u32 warm_reset(void);
74 void force_emif_self_refresh(void);
75 void get_ioregs(const struct ctrl_ioregs **regs);
76 void srcomp_enable(void);
77 void setup_warmreset_time(void);
78 const struct mmc_platform_fixups *platform_fixups_mmc(uint32_t addr);
79 
80 static inline u32 div_round_up(u32 num, u32 den)
81 {
82 	return (num + den - 1)/den;
83 }
84 
85 static inline u32 usec_to_32k(u32 usec)
86 {
87 	return div_round_up(32768 * usec, 1000000);
88 }
89 
90 #define OMAP5_SERVICE_L2ACTLR_SET    0x104
91 #define OMAP5_SERVICE_ACR_SET        0x107
92 
93 #endif
94