2011-11-15 14:49:55 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-11-15 14:49:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYS_PROTO_H_
|
|
|
|
#define _SYS_PROTO_H_
|
|
|
|
|
|
|
|
#include <asm/arch/omap.h>
|
|
|
|
#include <asm/io.h>
|
2013-05-30 02:54:32 +00:00
|
|
|
#include <asm/arch/clock.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
#include <asm/omap_common.h>
|
2013-11-22 11:23:29 +00:00
|
|
|
#include <linux/mtd/omap_gpmc.h>
|
2013-05-30 02:54:32 +00:00
|
|
|
#include <asm/arch/clock.h>
|
2014-05-16 17:02:24 +00:00
|
|
|
#include <asm/ti-common/sys_proto.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2013-04-24 00:41:24 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2013-02-12 21:29:08 +00:00
|
|
|
struct pad_conf_entry {
|
|
|
|
u32 offset;
|
|
|
|
u32 val;
|
|
|
|
};
|
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
struct omap_sysinfo {
|
|
|
|
char *board_string;
|
|
|
|
};
|
|
|
|
extern const struct omap_sysinfo sysinfo;
|
|
|
|
|
|
|
|
void gpmc_init(void);
|
|
|
|
void watchdog_init(void);
|
|
|
|
u32 get_device_type(void);
|
|
|
|
void do_set_mux(u32 base, struct pad_conf_entry const *array, int size);
|
|
|
|
void set_muxconf_regs_essential(void);
|
|
|
|
u32 wait_on_value(u32, u32, void *, u32);
|
|
|
|
void sdelay(unsigned long);
|
|
|
|
void setup_clocks_for_console(void);
|
|
|
|
void prcm_init(void);
|
2013-02-04 04:22:00 +00:00
|
|
|
void bypass_dpll(u32 const base);
|
2011-11-15 14:49:55 +00:00
|
|
|
void freq_update_core(void);
|
|
|
|
u32 get_sys_clk_freq(void);
|
|
|
|
u32 omap5_ddr_clk(void);
|
|
|
|
void cancel_out(u32 *num, u32 *den, u32 den_limit);
|
|
|
|
void sdram_init(void);
|
|
|
|
u32 omap_sdram_size(void);
|
|
|
|
u32 cortex_rev(void);
|
2013-05-31 16:31:59 +00:00
|
|
|
void save_omap_boot_params(void);
|
2011-11-15 14:49:55 +00:00
|
|
|
void init_omap_revision(void);
|
|
|
|
void do_io_settings(void);
|
2013-05-30 02:54:33 +00:00
|
|
|
void sri2c_init(void);
|
2013-05-30 03:19:29 +00:00
|
|
|
void gpi2c_init(void);
|
2012-03-01 14:17:37 +00:00
|
|
|
int omap_vc_bypass_send_value(u8 sa, u8 reg_addr, u8 reg_data);
|
2012-05-29 19:26:41 +00:00
|
|
|
u32 warm_reset(void);
|
2012-05-29 19:26:43 +00:00
|
|
|
void force_emif_self_refresh(void);
|
2013-02-04 04:22:05 +00:00
|
|
|
void get_ioregs(const struct ctrl_ioregs **regs);
|
2013-02-12 01:33:45 +00:00
|
|
|
void srcomp_enable(void);
|
2013-04-17 20:49:40 +00:00
|
|
|
void setup_warmreset_time(void);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2013-04-17 20:49:40 +00:00
|
|
|
static inline u32 div_round_up(u32 num, u32 den)
|
|
|
|
{
|
|
|
|
return (num + den - 1)/den;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 usec_to_32k(u32 usec)
|
|
|
|
{
|
|
|
|
return div_round_up(32768 * usec, 1000000);
|
|
|
|
}
|
2015-03-09 22:12:06 +00:00
|
|
|
|
|
|
|
#define OMAP5_SERVICE_L2ACTLR_SET 0x104
|
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
#endif
|