blob: ab3e1683f6e39b4d0e7b5fce45f33528f558f8dc [file] [log] [blame]
Dirk Behmea8b64502008-12-14 09:47:12 +01001/*
2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
4 * Richard Woodruff <r-woodruff2@ti.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21#ifndef _SYS_PROTO_H_
22#define _SYS_PROTO_H_
23
24typedef struct {
25 u32 board_type_v1;
26 u32 board_type_v2;
27 u32 mtype;
Dirk Behmea8b64502008-12-14 09:47:12 +010028 char *board_string;
29 char *nand_string;
30} omap3_sysinfo;
31
32void prcm_init(void);
33void per_clocks_enable(void);
34
35void memif_init(void);
36void sdrc_init(void);
37void do_sdrc_init(u32, u32);
38void gpmc_init(void);
39
40void watchdog_init(void);
41void set_muxconf_regs(void);
42
43u32 get_cpu_rev(void);
44u32 get_mem_type(void);
45u32 get_sysboot_value(void);
46u32 is_gpmc_muxed(void);
47u32 get_gpmc0_type(void);
48u32 get_gpmc0_width(void);
49u32 get_board_type(void);
50void display_board_info(u32);
51u32 get_sdr_cs_size(u32);
52u32 get_sdr_cs_offset(u32);
53u32 is_running_in_sdram(void);
54u32 is_running_in_sram(void);
55u32 is_running_in_flash(void);
56u32 get_device_type(void);
57void l2cache_enable(void);
58void secureworld_exit(void);
59void setup_auxcr(void);
60void try_unlock_memory(void);
61u32 get_boot_type(void);
62void v7_flush_dcache_all(u32);
63void sr32(void *, u32, u32, u32);
64u32 wait_on_value(u32, u32, void *, u32);
65void sdelay(unsigned long);
66void make_cs1_contiguous(void);
67void omap_nand_switch_ecc(int);
68void power_init_r(void);
69
70#endif