Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 24 | typedef struct { |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 25 | u32 mtype; |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 26 | char *board_string; |
| 27 | char *nand_string; |
| 28 | } omap3_sysinfo; |
| 29 | |
| 30 | void prcm_init(void); |
| 31 | void per_clocks_enable(void); |
| 32 | |
| 33 | void memif_init(void); |
| 34 | void sdrc_init(void); |
| 35 | void do_sdrc_init(u32, u32); |
| 36 | void gpmc_init(void); |
Nishanth Menon | f8a812a | 2009-10-13 12:49:55 -0400 | [diff] [blame] | 37 | void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base, |
Nishanth Menon | 73db0c7 | 2009-10-13 12:47:24 -0400 | [diff] [blame] | 38 | u32 size); |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 39 | |
| 40 | void watchdog_init(void); |
| 41 | void set_muxconf_regs(void); |
| 42 | |
| 43 | u32 get_cpu_rev(void); |
| 44 | u32 get_mem_type(void); |
| 45 | u32 get_sysboot_value(void); |
| 46 | u32 is_gpmc_muxed(void); |
| 47 | u32 get_gpmc0_type(void); |
| 48 | u32 get_gpmc0_width(void); |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 49 | u32 get_sdr_cs_size(u32); |
| 50 | u32 get_sdr_cs_offset(u32); |
| 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 | void l2cache_enable(void); |
| 56 | void secureworld_exit(void); |
| 57 | void setup_auxcr(void); |
| 58 | void try_unlock_memory(void); |
| 59 | u32 get_boot_type(void); |
Tom Rix | 7a2aa8b | 2009-09-10 15:27:57 -0400 | [diff] [blame] | 60 | void invalidate_dcache(u32); |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 61 | void sr32(void *, u32, u32, u32); |
| 62 | u32 wait_on_value(u32, u32, void *, u32); |
| 63 | void sdelay(unsigned long); |
| 64 | void make_cs1_contiguous(void); |
| 65 | void omap_nand_switch_ecc(int); |
| 66 | void power_init_r(void); |
Dirk Behme | e6a6a70 | 2009-03-12 19:30:50 +0100 | [diff] [blame] | 67 | void dieid_num_r(void); |
Dirk Behme | a8b6450 | 2008-12-14 09:47:12 +0100 | [diff] [blame] | 68 | |
| 69 | #endif |