1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2004-2008 4 * Texas Instruments, <www.ti.com> 5 * Richard Woodruff <r-woodruff2@ti.com> 6 */ 7 #ifndef _SYS_PROTO_H_ 8 #define _SYS_PROTO_H_ 9 #include <linux/mtd/omap_gpmc.h> 10 #include <asm/omap_common.h> 11 12 typedef struct { 13 u32 mtype; 14 char *board_string; 15 char *nand_string; 16 } omap3_sysinfo; 17 18 struct emu_hal_params { 19 u32 num_params; 20 u32 param1; 21 }; 22 23 /* Board SDRC timing values */ 24 struct board_sdrc_timings { 25 u32 sharing; 26 u32 mcfg; 27 u32 ctrla; 28 u32 ctrlb; 29 u32 rfr_ctrl; 30 u32 mr; 31 }; 32 33 void prcm_init(void); 34 void per_clocks_enable(void); 35 void ehci_clocks_enable(void); 36 void memif_init(void); 37 void sdrc_init(void); 38 void get_board_mem_timings(struct board_sdrc_timings *timings); 39 int identify_nand_chip(int *mfr, int *id); 40 void emif4_init(void); 41 void gpmc_init(void); 42 void enable_gpmc_cs_config(const u32 *gpmc_config, const struct gpmc_cs *cs, 43 u32 base, u32 size); 44 void set_gpmc_cs0(int flash_type); 45 void watchdog_init(void); 46 void set_muxconf_regs(void); 47 u32 get_cpu_family(void); 48 u32 get_cpu_rev(void); 49 u32 is_gpmc_muxed(void); 50 u32 get_gpmc0_type(void); 51 u32 is_running_in_sdram(void); 52 u32 is_running_in_sram(void); 53 u32 is_running_in_flash(void); 54 u32 get_device_type(void); 55 u32 get_boot_type(void); 56 void invalidate_dcache(u32); 57 u32 wait_on_value(u32, u32, void *, u32); 58 void cancel_out(u32 *num, u32 *den, u32 den_limit); 59 void sdelay(unsigned long); 60 int omap_nand_switch_ecc(uint32_t, uint32_t); 61 void power_init_r(void); 62 void do_omap3_emu_romcode_call(u32 service_id, u32 parameters); 63 void omap3_set_aux_cr_secure(u32 acr); 64 u32 warm_reset(void); 65 void save_omap_boot_params(void); 66 #endif 67