Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 1 | /* |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 2 | * (C) Copyright 2010 |
| 3 | * Texas Instruments, <www.ti.com> |
Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 6 | */ |
| 7 | |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 8 | #ifndef _SYS_PROTO_H_ |
| 9 | #define _SYS_PROTO_H_ |
| 10 | |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 11 | #include <asm/arch/omap.h> |
Lokesh Vutla | 61c517f | 2013-05-30 02:54:32 +0000 | [diff] [blame] | 12 | #include <asm/arch/clock.h> |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 13 | #include <asm/io.h> |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 14 | #include <asm/omap_common.h> |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 15 | #include <asm/arch/mux_omap4.h> |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 16 | |
SRICHARAN R | 3f30b0a | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 19 | struct omap_sysinfo { |
| 20 | char *board_string; |
| 21 | }; |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 22 | extern const struct omap_sysinfo sysinfo; |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 23 | |
Steve Sakoman | 9b8ea4e | 2010-07-15 16:19:16 -0400 | [diff] [blame] | 24 | void gpmc_init(void); |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 25 | void watchdog_init(void); |
| 26 | u32 get_device_type(void); |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 27 | void do_set_mux(u32 base, struct pad_conf_entry const *array, int size); |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 28 | void set_muxconf_regs_essential(void); |
Aneesh V | f908b63 | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 29 | void set_muxconf_regs_non_essential(void); |
Steve Sakoman | 6e09a76 | 2010-08-04 09:39:40 -0700 | [diff] [blame] | 30 | void sr32(void *, u32, u32, u32); |
| 31 | u32 wait_on_value(u32, u32, void *, u32); |
| 32 | void sdelay(unsigned long); |
Aneesh V | e3405bd | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 33 | void set_pl310_ctrl_reg(u32 val); |
Aneesh V | b8e60b9 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 34 | void setup_clocks_for_console(void); |
Aneesh V | 0d2628b | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 35 | void prcm_init(void); |
SRICHARAN R | fb6aa1f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 36 | void bypass_dpll(u32 const base); |
Aneesh V | 0d2628b | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 37 | void freq_update_core(void); |
| 38 | u32 get_sys_clk_freq(void); |
| 39 | u32 omap4_ddr_clk(void); |
Aneesh V | c0e8852 | 2011-07-21 09:10:12 -0400 | [diff] [blame] | 40 | void cancel_out(u32 *num, u32 *den, u32 den_limit); |
Aneesh V | cc56558 | 2011-07-21 09:10:09 -0400 | [diff] [blame] | 41 | void sdram_init(void); |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 42 | u32 omap_sdram_size(void); |
| 43 | u32 cortex_rev(void); |
Tom Rini | 51df26c | 2013-05-31 12:31:59 -0400 | [diff] [blame] | 44 | void save_omap_boot_params(void); |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 45 | void init_omap_revision(void); |
| 46 | void do_io_settings(void); |
Lokesh Vutla | ae49f6d | 2013-05-30 02:54:33 +0000 | [diff] [blame] | 47 | void sri2c_init(void); |
Lokesh Vutla | 3685297 | 2013-05-30 03:19:29 +0000 | [diff] [blame] | 48 | void gpi2c_init(void); |
Nishanth Menon | 41d7ab1 | 2012-03-01 14:17:37 +0000 | [diff] [blame] | 49 | int omap_vc_bypass_send_value(u8 sa, u8 reg_addr, u8 reg_data); |
Lokesh Vutla | e89f154 | 2012-05-29 19:26:41 +0000 | [diff] [blame] | 50 | u32 warm_reset(void); |
Lokesh Vutla | ba87377 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 51 | void force_emif_self_refresh(void); |
Lokesh Vutla | 100c2d8 | 2013-04-17 20:49:40 +0000 | [diff] [blame] | 52 | void setup_warmreset_time(void); |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 53 | |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 54 | static inline u32 running_from_sdram(void) |
| 55 | { |
| 56 | u32 pc; |
| 57 | asm volatile ("mov %0, pc" : "=r" (pc)); |
| 58 | return ((pc >= OMAP44XX_DRAM_ADDR_SPACE_START) && |
| 59 | (pc < OMAP44XX_DRAM_ADDR_SPACE_END)); |
| 60 | } |
| 61 | |
| 62 | static inline u8 uboot_loaded_by_spl(void) |
| 63 | { |
| 64 | /* |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 65 | * u-boot can be running from sdram either because of configuration |
| 66 | * Header or by SPL. If because of CH, then the romcode sets the |
| 67 | * CHSETTINGS executed bit to true in the boot parameter structure that |
| 68 | * it passes to the bootloader.This parameter is stored in the ch_flags |
| 69 | * variable by both SPL and u-boot.Check out for CHSETTINGS, which is a |
| 70 | * mandatory section if CH is present. |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 71 | */ |
SRICHARAN R | 3f30b0a | 2013-04-24 00:41:24 +0000 | [diff] [blame] | 72 | if ((gd->arch.omap_boot_params.ch_flags) & (CH_FLAGS_CHSETTINGS)) |
Sricharan | 308fe92 | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 73 | return 0; |
| 74 | else |
| 75 | return running_from_sdram(); |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 76 | } |
| 77 | /* |
| 78 | * The basic hardware init of OMAP(s_init()) can happen in 4 |
| 79 | * different contexts: |
| 80 | * 1. SPL running from SRAM |
| 81 | * 2. U-Boot running from FLASH |
| 82 | * 3. Non-XIP U-Boot loaded to SDRAM by SPL |
| 83 | * 4. Non-XIP U-Boot loaded to SDRAM by ROM code using the |
| 84 | * Configuration Header feature |
| 85 | * |
| 86 | * This function finds this context. |
| 87 | * Defining as inline may help in compiling out unused functions in SPL |
| 88 | */ |
Sricharan | 9310ff7 | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 89 | static inline u32 omap_hw_init_context(void) |
Aneesh V | 3067942 | 2011-07-21 09:09:59 -0400 | [diff] [blame] | 90 | { |
| 91 | #ifdef CONFIG_SPL_BUILD |
| 92 | return OMAP_INIT_CONTEXT_SPL; |
| 93 | #else |
| 94 | if (uboot_loaded_by_spl()) |
| 95 | return OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL; |
| 96 | else if (running_from_sdram()) |
| 97 | return OMAP_INIT_CONTEXT_UBOOT_AFTER_CH; |
| 98 | else |
| 99 | return OMAP_INIT_CONTEXT_UBOOT_FROM_NOR; |
| 100 | #endif |
| 101 | } |
Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 102 | |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 103 | #endif |