2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-11-15 14:49:55 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
|
2015-06-04 11:12:37 +00:00
|
|
|
/*
|
|
|
|
* Structure for Iodelay configuration registers.
|
|
|
|
* Theoretical max for g_delay is 21560 ps.
|
|
|
|
* Theoretical max for a_delay is 1/3rd of g_delay max.
|
|
|
|
* So using u16 for both a/g_delay.
|
|
|
|
*/
|
|
|
|
struct iodelay_cfg_entry {
|
|
|
|
u16 offset;
|
|
|
|
u16 a_delay;
|
|
|
|
u16 g_delay;
|
|
|
|
};
|
|
|
|
|
2013-02-12 21:29:08 +00:00
|
|
|
struct pad_conf_entry {
|
|
|
|
u32 offset;
|
|
|
|
u32 val;
|
|
|
|
};
|
|
|
|
|
2018-01-30 15:01:41 +00:00
|
|
|
struct mmc_platform_fixups {
|
|
|
|
const char *hw_rev;
|
|
|
|
u32 unsupported_caps;
|
|
|
|
u32 max_freq;
|
|
|
|
};
|
|
|
|
|
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);
|
2015-06-04 11:12:33 +00:00
|
|
|
void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size);
|
2016-02-27 18:18:56 +00:00
|
|
|
void set_muxconf_regs(void);
|
2011-11-15 14:49:55 +00:00
|
|
|
u32 wait_on_value(u32, u32, void *, u32);
|
|
|
|
void sdelay(unsigned long);
|
2016-02-24 18:30:52 +00:00
|
|
|
void setup_early_clocks(void);
|
2011-11-15 14:49:55 +00:00
|
|
|
void prcm_init(void);
|
2016-02-24 18:30:57 +00:00
|
|
|
void do_board_detect(void);
|
2016-05-24 06:15:05 +00:00
|
|
|
void vcores_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);
|
2017-12-29 06:17:51 +00:00
|
|
|
void init_package_revision(void);
|
2011-11-15 14:49:55 +00:00
|
|
|
void do_io_settings(void);
|
2013-05-30 02:54:33 +00:00
|
|
|
void sri2c_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);
|
2018-01-30 15:01:41 +00:00
|
|
|
const struct mmc_platform_fixups *platform_fixups_mmc(uint32_t addr);
|
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
|
2015-07-27 21:26:06 +00:00
|
|
|
#define OMAP5_SERVICE_ACR_SET 0x107
|
2015-03-09 22:12:06 +00:00
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
#endif
|