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 DECLARE_GLOBAL_DATA_PTR; 20 21 /* 22 * Structure for Iodelay configuration registers. 23 * Theoretical max for g_delay is 21560 ps. 24 * Theoretical max for a_delay is 1/3rd of g_delay max. 25 * So using u16 for both a/g_delay. 26 */ 27 struct iodelay_cfg_entry { 28 u16 offset; 29 u16 a_delay; 30 u16 g_delay; 31 }; 32 33 struct pad_conf_entry { 34 u32 offset; 35 u32 val; 36 }; 37 38 struct omap_sysinfo { 39 char *board_string; 40 }; 41 extern const struct omap_sysinfo sysinfo; 42 43 void gpmc_init(void); 44 void watchdog_init(void); 45 u32 get_device_type(void); 46 void do_set_mux(u32 base, struct pad_conf_entry const *array, int size); 47 void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size); 48 void set_muxconf_regs(void); 49 u32 wait_on_value(u32, u32, void *, u32); 50 void sdelay(unsigned long); 51 void setup_early_clocks(void); 52 void prcm_init(void); 53 void do_board_detect(void); 54 void vcores_init(void); 55 void bypass_dpll(u32 const base); 56 void freq_update_core(void); 57 u32 get_sys_clk_freq(void); 58 u32 omap5_ddr_clk(void); 59 void cancel_out(u32 *num, u32 *den, u32 den_limit); 60 void sdram_init(void); 61 u32 omap_sdram_size(void); 62 u32 cortex_rev(void); 63 void save_omap_boot_params(void); 64 void init_omap_revision(void); 65 void do_io_settings(void); 66 void sri2c_init(void); 67 int omap_vc_bypass_send_value(u8 sa, u8 reg_addr, u8 reg_data); 68 u32 warm_reset(void); 69 void force_emif_self_refresh(void); 70 void get_ioregs(const struct ctrl_ioregs **regs); 71 void srcomp_enable(void); 72 void setup_warmreset_time(void); 73 74 static inline u32 div_round_up(u32 num, u32 den) 75 { 76 return (num + den - 1)/den; 77 } 78 79 static inline u32 usec_to_32k(u32 usec) 80 { 81 return div_round_up(32768 * usec, 1000000); 82 } 83 84 #define OMAP5_SERVICE_L2ACTLR_SET 0x104 85 #define OMAP5_SERVICE_ACR_SET 0x107 86 87 #endif 88