]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-omap3/sys_proto.h
ARM: OMAP3: rx51: Enable workaround for ARM errata 454179, 430973, 621766
[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 #include <asm/omap_common.h>
12
13 typedef struct {
14         u32 mtype;
15         char *board_string;
16         char *nand_string;
17 } omap3_sysinfo;
18
19 struct emu_hal_params {
20         u32 num_params;
21         u32 param1;
22 };
23
24 /* Board SDRC timing values */
25 struct board_sdrc_timings {
26         u32 sharing;
27         u32 mcfg;
28         u32 ctrla;
29         u32 ctrlb;
30         u32 rfr_ctrl;
31         u32 mr;
32 };
33
34 void prcm_init(void);
35 void per_clocks_enable(void);
36 void ehci_clocks_enable(void);
37
38 void memif_init(void);
39 void sdrc_init(void);
40 void do_sdrc_init(u32, u32);
41
42 void get_board_mem_timings(struct board_sdrc_timings *timings);
43 void identify_nand_chip(int *mfr, int *id);
44 void emif4_init(void);
45 void gpmc_init(void);
46 void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
47                         u32 size);
48
49 void watchdog_init(void);
50 void set_muxconf_regs(void);
51
52 u32 get_cpu_family(void);
53 u32 get_cpu_rev(void);
54 u32 get_sku_id(void);
55 u32 get_sysboot_value(void);
56 u32 is_gpmc_muxed(void);
57 u32 get_gpmc0_type(void);
58 u32 get_gpmc0_width(void);
59 u32 is_running_in_sdram(void);
60 u32 is_running_in_sram(void);
61 u32 is_running_in_flash(void);
62 u32 get_device_type(void);
63 void secureworld_exit(void);
64 void try_unlock_memory(void);
65 u32 get_boot_type(void);
66 void invalidate_dcache(u32);
67 u32 wait_on_value(u32, u32, void *, u32);
68 void cancel_out(u32 *num, u32 *den, u32 den_limit);
69 void sdelay(unsigned long);
70 void make_cs1_contiguous(void);
71 void omap_nand_switch_ecc(uint32_t, uint32_t);
72 void power_init_r(void);
73 void dieid_num_r(void);
74 void get_dieid(u32 *id);
75 void do_omap3_emu_romcode_call(u32 service_id, u32 parameters);
76 void omap3_set_aux_cr_secure(u32 acr);
77 u32 warm_reset(void);
78 #endif