- Add support for HyperBus Memory Controller of TI's J721e and AM654 SoCs (Vignesh)
This commit is contained in:
commit
c9e40996f9
@ -107,4 +107,30 @@
|
||||
loczrama = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
fss: fss@47000000 {
|
||||
compatible = "syscon", "simple-mfd";
|
||||
reg = <0x0 0x47000000 0x0 0x100>;
|
||||
#address-cells = <2>;
|
||||
#size-cells = <2>;
|
||||
ranges;
|
||||
|
||||
hbmc_mux: hbmc-mux {
|
||||
compatible = "mmio-mux";
|
||||
#mux-control-cells = <1>;
|
||||
mux-reg-masks = <0x4 0x2>; /* HBMC select */
|
||||
};
|
||||
|
||||
hbmc: hyperbus@47034000 {
|
||||
compatible = "ti,j721e-hbmc", "ti,am654-hbmc";
|
||||
reg = <0x0 0x47034000 0x0 0x100>,
|
||||
<0x5 0x00000000 0x1 0x0000000>;
|
||||
power-domains = <&k3_pds 102 TI_SCI_PD_EXCLUSIVE>;
|
||||
#address-cells = <2>;
|
||||
#size-cells = <1>;
|
||||
mux-controls = <&hbmc_mux 0>;
|
||||
assigned-clocks = <&k3_clks 102 0>;
|
||||
assigned-clock-rates = <250000000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -27,3 +27,37 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&wkup_pmx0 {
|
||||
mcu_fss0_hpb0_pins_default: mcu-fss0-hpb0-pins-default {
|
||||
pinctrl-single,pins = <
|
||||
J721E_WKUP_IOPAD(0x0, PIN_OUTPUT, 1) /* (E20) MCU_OSPI0_CLK.MCU_HYPERBUS0_CK */
|
||||
J721E_WKUP_IOPAD(0x4, PIN_OUTPUT, 1) /* (C21) MCU_OSPI0_LBCLKO.MCU_HYPERBUS0_CKn */
|
||||
J721E_WKUP_IOPAD(0x2c, PIN_OUTPUT, 1) /* (F19) MCU_OSPI0_CSn0.MCU_HYPERBUS0_CSn0 */
|
||||
J721E_WKUP_IOPAD(0x54, PIN_OUTPUT, 3) /* (E22) MCU_OSPI1_CSn1.MCU_HYPERBUS0_CSn1 */
|
||||
J721E_WKUP_IOPAD(0x30, PIN_OUTPUT, 1) /* (E19) MCU_OSPI0_CSn1.MCU_HYPERBUS0_RESETn */
|
||||
J721E_WKUP_IOPAD(0x8, PIN_INPUT, 1) /* (D21) MCU_OSPI0_DQS.MCU_HYPERBUS0_RWDS */
|
||||
J721E_WKUP_IOPAD(0xc, PIN_INPUT, 1) /* (D20) MCU_OSPI0_D0.MCU_HYPERBUS0_DQ0 */
|
||||
J721E_WKUP_IOPAD(0x10, PIN_INPUT, 1) /* (G19) MCU_OSPI0_D1.MCU_HYPERBUS0_DQ1 */
|
||||
J721E_WKUP_IOPAD(0x14, PIN_INPUT, 1) /* (G20) MCU_OSPI0_D2.MCU_HYPERBUS0_DQ2 */
|
||||
J721E_WKUP_IOPAD(0x18, PIN_INPUT, 1) /* (F20) MCU_OSPI0_D3.MCU_HYPERBUS0_DQ3 */
|
||||
J721E_WKUP_IOPAD(0x1c, PIN_INPUT, 1) /* (F21) MCU_OSPI0_D4.MCU_HYPERBUS0_DQ4 */
|
||||
J721E_WKUP_IOPAD(0x20, PIN_INPUT, 1) /* (E21) MCU_OSPI0_D5.MCU_HYPERBUS0_DQ5 */
|
||||
J721E_WKUP_IOPAD(0x24, PIN_INPUT, 1) /* (B22) MCU_OSPI0_D6.MCU_HYPERBUS0_DQ6 */
|
||||
J721E_WKUP_IOPAD(0x28, PIN_INPUT, 1) /* (G21) MCU_OSPI0_D7.MCU_HYPERBUS0_DQ7 */
|
||||
>;
|
||||
};
|
||||
};
|
||||
|
||||
&hbmc {
|
||||
status = "disabled";
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&mcu_fss0_hpb0_pins_default>;
|
||||
ranges = <0x0 0x0 0x5 0x0 0x4000000>, /* 64MB Flash on CS0 */
|
||||
<0x1 0x0 0x5 0x4000000 0x800000>; /* 8MB RAM on CS1 */
|
||||
|
||||
flash@0,0 {
|
||||
compatible = "cypress,hyperflash", "cfi-flash";
|
||||
reg = <0x0 0x0 0x4000000>;
|
||||
};
|
||||
};
|
||||
|
@ -34,6 +34,7 @@ CONFIG_SPL_YMODEM_SUPPORT=y
|
||||
CONFIG_CMD_ASKENV=y
|
||||
# CONFIG_CMD_FLASH is not set
|
||||
CONFIG_CMD_MMC=y
|
||||
CONFIG_CMD_MTD=y
|
||||
CONFIG_CMD_REMOTEPROC=y
|
||||
CONFIG_CMD_SF=y
|
||||
# CONFIG_CMD_SETEXPR is not set
|
||||
@ -63,6 +64,15 @@ CONFIG_MISC=y
|
||||
CONFIG_DM_MMC=y
|
||||
CONFIG_MMC_SDHCI=y
|
||||
CONFIG_MMC_SDHCI_AM654=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_MTD_NOR_FLASH=y
|
||||
CONFIG_MTD_DEVICE=y
|
||||
CONFIG_FLASH_CFI_DRIVER=y
|
||||
CONFIG_CFI_FLASH=y
|
||||
CONFIG_SYS_FLASH_USE_BUFFER_WRITE=y
|
||||
CONFIG_FLASH_CFI_MTD=y
|
||||
CONFIG_SYS_FLASH_CFI=y
|
||||
CONFIG_HBMC_AM654=y
|
||||
CONFIG_DM_SPI_FLASH=y
|
||||
CONFIG_SPI_FLASH=y
|
||||
CONFIG_SPI_FLASH_STMICRO=y
|
||||
@ -85,3 +95,5 @@ CONFIG_SYSRESET=y
|
||||
CONFIG_SPL_SYSRESET=y
|
||||
CONFIG_SYSRESET_TI_SCI=y
|
||||
CONFIG_OF_LIBFDT_OVERLAY=y
|
||||
CONFIG_MTDIDS_DEFAULT="nor0=47040000.spi.0,nor0=47034000.hyperbus"
|
||||
CONFIG_MTDPARTS_DEFAULT="mtdparts=47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),1m(hbmc.sysfw),-@8m(hbmc.rootfs)"
|
||||
|
@ -94,6 +94,13 @@ config RENESAS_RPC_HF
|
||||
This enables access to Hyperflash memory through the Renesas
|
||||
RCar Gen3 RPC controller.
|
||||
|
||||
config HBMC_AM654
|
||||
bool "HyperBus controller driver for AM65x SoC"
|
||||
depends on SYSCON
|
||||
help
|
||||
This is the driver for HyperBus controller on TI's AM65x and
|
||||
other SoCs
|
||||
|
||||
source "drivers/mtd/nand/Kconfig"
|
||||
|
||||
source "drivers/mtd/spi/Kconfig"
|
||||
|
@ -18,5 +18,6 @@ obj-$(CONFIG_FLASH_PIC32) += pic32_flash.o
|
||||
obj-$(CONFIG_ST_SMI) += st_smi.o
|
||||
obj-$(CONFIG_STM32_FLASH) += stm32_flash.o
|
||||
obj-$(CONFIG_RENESAS_RPC_HF) += renesas_rpc_hf.o
|
||||
obj-$(CONFIG_HBMC_AM654) += hbmc-am654.o
|
||||
|
||||
obj-y += nand/
|
||||
|
@ -178,7 +178,8 @@ __maybe_weak u64 flash_read64(void *addr)
|
||||
/*-----------------------------------------------------------------------
|
||||
*/
|
||||
#if defined(CONFIG_ENV_IS_IN_FLASH) || defined(CONFIG_ENV_ADDR_REDUND) || \
|
||||
(CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE)
|
||||
(defined(CONFIG_SYS_MONITOR_BASE) && \
|
||||
(CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE))
|
||||
static flash_info_t *flash_get_info(ulong base)
|
||||
{
|
||||
int i;
|
||||
@ -2329,7 +2330,8 @@ static void flash_protect_default(void)
|
||||
#endif
|
||||
|
||||
/* Monitor protection ON by default */
|
||||
#if (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \
|
||||
#if defined(CONFIG_SYS_MONITOR_BASE) && \
|
||||
(CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \
|
||||
(!defined(CONFIG_MONITOR_IS_IN_RAM))
|
||||
flash_protect(FLAG_PROTECT_SET,
|
||||
CONFIG_SYS_MONITOR_BASE,
|
||||
|
105
drivers/mtd/hbmc-am654.c
Normal file
105
drivers/mtd/hbmc-am654.c
Normal file
@ -0,0 +1,105 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
//
|
||||
// Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
|
||||
// Author: Vignesh Raghavendra <vigneshr@ti.com>
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/io.h>
|
||||
#include <dm.h>
|
||||
#include <regmap.h>
|
||||
#include <syscon.h>
|
||||
|
||||
#define FSS_SYSC_REG 0x4
|
||||
|
||||
#define HYPERBUS_CALIB_COUNT 25
|
||||
|
||||
struct am654_hbmc_priv {
|
||||
void __iomem *mmiobase;
|
||||
bool calibrated;
|
||||
};
|
||||
|
||||
/* Calibrate by looking for "QRY" string within the CFI space */
|
||||
static int am654_hyperbus_calibrate(struct udevice *dev)
|
||||
{
|
||||
struct am654_hbmc_priv *priv = dev_get_priv(dev);
|
||||
int count = HYPERBUS_CALIB_COUNT;
|
||||
int pass_count = 0;
|
||||
u16 qry[3];
|
||||
|
||||
if (priv->calibrated)
|
||||
return 0;
|
||||
|
||||
writew(0xF0, priv->mmiobase);
|
||||
writew(0x98, priv->mmiobase + 0xaa);
|
||||
|
||||
while (count--) {
|
||||
qry[0] = readw(priv->mmiobase + 0x20);
|
||||
qry[1] = readw(priv->mmiobase + 0x22);
|
||||
qry[2] = readw(priv->mmiobase + 0x24);
|
||||
|
||||
if (qry[0] == 'Q' && qry[1] == 'R' && qry[2] == 'Y')
|
||||
pass_count++;
|
||||
else
|
||||
pass_count = 0;
|
||||
if (pass_count == 5)
|
||||
break;
|
||||
}
|
||||
writew(0xF0, priv->mmiobase);
|
||||
writew(0xFF, priv->mmiobase);
|
||||
|
||||
return pass_count == 5;
|
||||
}
|
||||
|
||||
static int am654_select_hbmc(struct udevice *dev)
|
||||
{
|
||||
struct regmap *regmap = syscon_get_regmap(dev_get_parent(dev));
|
||||
|
||||
return regmap_update_bits(regmap, FSS_SYSC_REG, 0x2, 0x2);
|
||||
}
|
||||
|
||||
static int am654_hbmc_bind(struct udevice *dev)
|
||||
{
|
||||
return dm_scan_fdt_dev(dev);
|
||||
}
|
||||
|
||||
static int am654_hbmc_probe(struct udevice *dev)
|
||||
{
|
||||
struct am654_hbmc_priv *priv = dev_get_priv(dev);
|
||||
int ret;
|
||||
|
||||
priv->mmiobase = devfdt_remap_addr_index(dev, 1);
|
||||
if (dev_read_bool(dev, "mux-controls")) {
|
||||
ret = am654_select_hbmc(dev);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to select HBMC mux\n");
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
if (!priv->calibrated) {
|
||||
ret = am654_hyperbus_calibrate(dev);
|
||||
if (!ret) {
|
||||
dev_err(dev, "Calibration Failed\n");
|
||||
return -EIO;
|
||||
}
|
||||
}
|
||||
priv->calibrated = true;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct udevice_id am654_hbmc_dt_ids[] = {
|
||||
{
|
||||
.compatible = "ti,am654-hbmc",
|
||||
},
|
||||
{ /* end of table */ }
|
||||
};
|
||||
|
||||
U_BOOT_DRIVER(hbmc_am654) = {
|
||||
.name = "hbmc-am654",
|
||||
.id = UCLASS_MTD,
|
||||
.of_match = am654_hbmc_dt_ids,
|
||||
.probe = am654_hbmc_probe,
|
||||
.bind = am654_hbmc_bind,
|
||||
.priv_auto_alloc_size = sizeof(struct am654_hbmc_priv),
|
||||
};
|
@ -56,6 +56,9 @@
|
||||
#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
||||
#define CONFIG_CQSPI_REF_CLK 133333333
|
||||
|
||||
/* HyperFlash related configuration */
|
||||
#define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
|
||||
|
||||
/* U-Boot general configuration */
|
||||
#define EXTRA_ENV_J721E_BOARD_SETTINGS \
|
||||
"default_device_tree=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
|
||||
|
Loading…
Reference in New Issue
Block a user