]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-omap3/sys_proto.h
10300f49abec1818aea1d1c277b2ea01282de732
[karo-tx-uboot.git] / arch / arm / include / asm / arch-omap3 / sys_proto.h
1 /*
2  * (C) Copyright 2004-2008
3  * Texas Instruments, <www.ti.com>
4  * Richard Woodruff <r-woodruff2@ti.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8 #ifndef _SYS_PROTO_H_
9 #define _SYS_PROTO_H_
10 #include <linux/mtd/omap_gpmc.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 mcfg;
26         u32 ctrla;
27         u32 ctrlb;
28         u32 rfr_ctrl;
29         u32 mr;
30 };
31
32 void prcm_init(void);
33 void per_clocks_enable(void);
34 void ehci_clocks_enable(void);
35
36 void memif_init(void);
37 void sdrc_init(void);
38 void do_sdrc_init(u32, u32);
39
40 void get_board_mem_timings(struct board_sdrc_timings *timings);
41 void identify_nand_chip(int *mfr, int *id);
42 void emif4_init(void);
43 void gpmc_init(void);
44 void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
45                         u32 size);
46
47 void watchdog_init(void);
48 void set_muxconf_regs(void);
49
50 u32 get_cpu_family(void);
51 u32 get_cpu_rev(void);
52 u32 get_sku_id(void);
53 u32 get_sysboot_value(void);
54 u32 is_gpmc_muxed(void);
55 u32 get_gpmc0_type(void);
56 u32 get_gpmc0_width(void);
57 u32 is_running_in_sdram(void);
58 u32 is_running_in_sram(void);
59 u32 is_running_in_flash(void);
60 u32 get_device_type(void);
61 void secureworld_exit(void);
62 void try_unlock_memory(void);
63 u32 get_boot_type(void);
64 void invalidate_dcache(u32);
65 u32 wait_on_value(u32, u32, void *, u32);
66 void sdelay(unsigned long);
67 void make_cs1_contiguous(void);
68 void omap_nand_switch_ecc(uint32_t, uint32_t);
69 void power_init_r(void);
70 void dieid_num_r(void);
71 void do_omap3_emu_romcode_call(u32 service_id, u32 parameters);
72 void omap3_gp_romcode_call(u32 service_id, u32 parameter);
73 u32 warm_reset(void);
74 #endif