blob: dbcede01624a83d5e0f29c4400cb87be567b7522 [file] [log] [blame]
Chandan Nath98b036e2011-10-14 02:58:24 +00001/*
2 * sys_proto.h
3 *
4 * System information header
5 *
6 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Chandan Nath98b036e2011-10-14 02:58:24 +00009 */
10
11#ifndef _SYS_PROTO_H_
12#define _SYS_PROTO_H_
13
14#define BOARD_REV_ID 0x0
Chandan Nath98b036e2011-10-14 02:58:24 +000015
16u32 get_cpu_rev(void);
17u32 get_sysboot_value(void);
18
19#ifdef CONFIG_DISPLAY_CPUINFO
20int print_cpuinfo(void);
21#endif
22
Satyanarayana, Sandhya11784752012-08-09 18:29:57 +000023extern struct ctrl_stat *cstat;
Chandan Nath98b036e2011-10-14 02:58:24 +000024u32 get_device_type(void);
Tom Rini51df26c2013-05-31 12:31:59 -040025void save_omap_boot_params(void);
Chandan Nath77a73fe2012-01-09 20:38:59 +000026void setup_clocks_for_console(void);
Heiko Schocher0ef08172013-06-04 11:01:06 +020027void mpu_pll_config_val(int mpull_m);
Tom Rini034aba72012-07-03 09:20:06 -070028void ddr_pll_config(unsigned int ddrpll_M);
Tom Rini7a247722012-07-31 10:50:01 -070029
Ilya Yanok2ebbb862012-11-06 13:06:30 +000030void sdelay(unsigned long);
Tom Rini8eb48ff2013-03-14 11:15:25 +000031
32struct gpmc_cs;
Ilya Yanok2ebbb862012-11-06 13:06:30 +000033void gpmc_init(void);
Mark Jackson7808e1e2013-02-18 01:26:29 +000034void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
35 u32 size);
Andreas Bießmann1e4eccf2013-04-04 23:52:50 +000036void omap_nand_switch_ecc(uint32_t, uint32_t);
Heiko Schocher8aa1da92013-06-05 07:47:56 +020037
38void rtc32k_enable(void);
Heiko Schocher57004c52013-06-04 11:00:57 +020039void uart_soft_reset(void);
Lokesh Vutla89a83bf2013-07-30 10:48:52 +053040u32 wait_on_value(u32, u32, void *, u32);
Chandan Nath98b036e2011-10-14 02:58:24 +000041#endif