2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-11-15 14:49:55 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Common functions for OMAP4 based boards
|
|
|
|
*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
|
|
|
* Author :
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
* Steve Sakoman <steve@sakoman.com>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2016-11-23 07:55:28 +00:00
|
|
|
#include <palmas.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
#include <asm/armv7.h>
|
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
#include <asm/arch/sys_proto.h>
|
2014-02-26 13:47:58 +00:00
|
|
|
#include <linux/sizes.h>
|
2011-11-15 14:50:00 +00:00
|
|
|
#include <asm/emif.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2013-04-24 00:41:22 +00:00
|
|
|
#include <asm/omap_common.h>
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2013-04-24 00:41:22 +00:00
|
|
|
u32 *const omap_si_rev = (u32 *)OMAP_SRAM_SCRATCH_OMAP_REV;
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
static const struct gpio_bank gpio_bank_44xx[6] = {
|
2015-07-31 23:55:09 +00:00
|
|
|
{ (void *)OMAP44XX_GPIO1_BASE },
|
|
|
|
{ (void *)OMAP44XX_GPIO2_BASE },
|
|
|
|
{ (void *)OMAP44XX_GPIO3_BASE },
|
|
|
|
{ (void *)OMAP44XX_GPIO4_BASE },
|
|
|
|
{ (void *)OMAP44XX_GPIO5_BASE },
|
|
|
|
{ (void *)OMAP44XX_GPIO6_BASE },
|
2011-11-15 14:49:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct gpio_bank *const omap_gpio_bank = gpio_bank_44xx;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
|
|
/*
|
|
|
|
* Some tuning of IOs for optimal power and performance
|
|
|
|
*/
|
|
|
|
void do_io_settings(void)
|
|
|
|
{
|
|
|
|
u32 lpddr2io;
|
|
|
|
|
|
|
|
u32 omap4_rev = omap_revision();
|
|
|
|
|
|
|
|
if (omap4_rev == OMAP4430_ES1_0)
|
|
|
|
lpddr2io = CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN;
|
|
|
|
else if (omap4_rev == OMAP4430_ES2_0)
|
|
|
|
lpddr2io = CONTROL_LPDDR2IO_SLEW_325PS_DRV8_GATE_KEEPER;
|
|
|
|
else
|
|
|
|
lpddr2io = CONTROL_LPDDR2IO_SLEW_315PS_DRV12_PULL_DOWN;
|
|
|
|
|
|
|
|
/* EMIF1 */
|
2013-02-04 04:22:04 +00:00
|
|
|
writel(lpddr2io, (*ctrl)->control_lpddr2io1_0);
|
|
|
|
writel(lpddr2io, (*ctrl)->control_lpddr2io1_1);
|
2011-11-15 14:49:55 +00:00
|
|
|
/* No pull for GR10 as per hw team's recommendation */
|
|
|
|
writel(lpddr2io & ~LPDDR2IO_GR10_WD_MASK,
|
2013-02-04 04:22:04 +00:00
|
|
|
(*ctrl)->control_lpddr2io1_2);
|
|
|
|
writel(CONTROL_LPDDR2IO_3_VAL, (*ctrl)->control_lpddr2io1_3);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
/* EMIF2 */
|
2013-02-04 04:22:04 +00:00
|
|
|
writel(lpddr2io, (*ctrl)->control_lpddr2io2_0);
|
|
|
|
writel(lpddr2io, (*ctrl)->control_lpddr2io2_1);
|
2011-11-15 14:49:55 +00:00
|
|
|
/* No pull for GR10 as per hw team's recommendation */
|
|
|
|
writel(lpddr2io & ~LPDDR2IO_GR10_WD_MASK,
|
2013-02-04 04:22:04 +00:00
|
|
|
(*ctrl)->control_lpddr2io2_2);
|
|
|
|
writel(CONTROL_LPDDR2IO_3_VAL, (*ctrl)->control_lpddr2io2_3);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Some of these settings (TRIM values) come from eFuse and are
|
|
|
|
* in turn programmed in the eFuse at manufacturing time after
|
|
|
|
* calibration of the device. Do the software over-ride only if
|
|
|
|
* the device is not correctly trimmed
|
|
|
|
*/
|
2013-02-04 04:22:04 +00:00
|
|
|
if (!(readl((*ctrl)->control_std_fuse_opp_bgap) & 0xFFFF)) {
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
|
2013-02-04 04:22:04 +00:00
|
|
|
(*ctrl)->control_ldosram_iva_voltage_ctrl);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
|
2013-02-04 04:22:04 +00:00
|
|
|
(*ctrl)->control_ldosram_mpu_voltage_ctrl);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
|
|
|
writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
|
2013-02-04 04:22:04 +00:00
|
|
|
(*ctrl)->control_ldosram_core_voltage_ctrl);
|
2011-11-15 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
2011-11-21 23:39:05 +00:00
|
|
|
/*
|
|
|
|
* Over-ride the register
|
|
|
|
* i. unconditionally for all 4430
|
|
|
|
* ii. only if un-trimmed for 4460
|
|
|
|
*/
|
2013-02-04 04:22:04 +00:00
|
|
|
if (!readl((*ctrl)->control_efuse_1))
|
|
|
|
writel(CONTROL_EFUSE_1_OVERRIDE, (*ctrl)->control_efuse_1);
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2013-02-04 04:22:04 +00:00
|
|
|
if ((omap4_rev < OMAP4460_ES1_0) || !readl((*ctrl)->control_efuse_2))
|
|
|
|
writel(CONTROL_EFUSE_2_OVERRIDE, (*ctrl)->control_efuse_2);
|
2011-11-15 14:49:55 +00:00
|
|
|
}
|
2012-11-13 08:12:08 +00:00
|
|
|
#endif /* CONFIG_SPL_BUILD */
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2012-05-22 00:03:25 +00:00
|
|
|
/* dummy fuction for omap4 */
|
|
|
|
void config_data_eye_leveling_samples(u32 emif_base)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
void init_omap_revision(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* For some of the ES2/ES1 boards ID_CODE is not reliable:
|
|
|
|
* Also, ES1 and ES2 have different ARM revisions
|
|
|
|
* So use ARM revision for identification
|
|
|
|
*/
|
|
|
|
unsigned int arm_rev = cortex_rev();
|
|
|
|
|
|
|
|
switch (arm_rev) {
|
|
|
|
case MIDR_CORTEX_A9_R0P1:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES1_0;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
case MIDR_CORTEX_A9_R1P2:
|
|
|
|
switch (readl(CONTROL_ID_CODE)) {
|
|
|
|
case OMAP4_CONTROL_ID_CODE_ES2_0:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES2_0;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
case OMAP4_CONTROL_ID_CODE_ES2_1:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES2_1;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
case OMAP4_CONTROL_ID_CODE_ES2_2:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES2_2;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES2_0;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MIDR_CORTEX_A9_R1P3:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_ES2_3;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
case MIDR_CORTEX_A9_R2P10:
|
2011-11-21 23:39:03 +00:00
|
|
|
switch (readl(CONTROL_ID_CODE)) {
|
2013-08-06 12:18:48 +00:00
|
|
|
case OMAP4470_CONTROL_ID_CODE_ES1_0:
|
|
|
|
*omap_si_rev = OMAP4470_ES1_0;
|
|
|
|
break;
|
2011-11-21 23:39:03 +00:00
|
|
|
case OMAP4460_CONTROL_ID_CODE_ES1_1:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4460_ES1_1;
|
2011-11-21 23:39:03 +00:00
|
|
|
break;
|
|
|
|
case OMAP4460_CONTROL_ID_CODE_ES1_0:
|
|
|
|
default:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4460_ES1_0;
|
2011-11-21 23:39:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-12 02:25:40 +00:00
|
|
|
*omap_si_rev = OMAP4430_SILICON_ID_INVALID;
|
2011-11-15 14:49:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 17:37:10 +00:00
|
|
|
void omap_die_id(unsigned int *die_id)
|
|
|
|
{
|
|
|
|
die_id[0] = readl((*ctrl)->control_std_fuse_die_id_0);
|
|
|
|
die_id[1] = readl((*ctrl)->control_std_fuse_die_id_1);
|
|
|
|
die_id[2] = readl((*ctrl)->control_std_fuse_die_id_2);
|
|
|
|
die_id[3] = readl((*ctrl)->control_std_fuse_die_id_3);
|
|
|
|
}
|
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
#ifndef CONFIG_SYS_L2CACHE_OFF
|
|
|
|
void v7_outer_cache_enable(void)
|
|
|
|
{
|
2015-03-09 22:12:03 +00:00
|
|
|
omap_smc1(OMAP4_SERVICE_PL310_CONTROL_REG_SET, 1);
|
2011-11-15 14:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_disable(void)
|
|
|
|
{
|
2015-03-09 22:12:03 +00:00
|
|
|
omap_smc1(OMAP4_SERVICE_PL310_CONTROL_REG_SET, 0);
|
2011-11-15 14:49:55 +00:00
|
|
|
}
|
2012-11-13 08:12:08 +00:00
|
|
|
#endif /* !CONFIG_SYS_L2CACHE_OFF */
|
2016-11-23 07:55:28 +00:00
|
|
|
|
|
|
|
void vmmc_pbias_config(uint voltage)
|
|
|
|
{
|
|
|
|
u32 value = 0;
|
|
|
|
|
|
|
|
value = readl((*ctrl)->control_pbiaslite);
|
|
|
|
value &= ~(MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ);
|
|
|
|
writel(value, (*ctrl)->control_pbiaslite);
|
|
|
|
value = readl((*ctrl)->control_pbiaslite);
|
|
|
|
value |= MMC1_PBIASLITE_VMODE | MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ;
|
|
|
|
writel(value, (*ctrl)->control_pbiaslite);
|
|
|
|
}
|