mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
keystone2: keystone_nav: don't use hard addresses in qm_config
Use definitions in qm_config. The definitions can be set specifically for SoC, so there is no reason to check SoC type while initialization. Acked-by: Vitaly Andrianov <vitalya@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
This commit is contained in:
parent
68e80fdda1
commit
afa479cf66
2 changed files with 30 additions and 32 deletions
|
@ -15,21 +15,21 @@ static int soc_type =
|
|||
k2hk;
|
||||
#endif
|
||||
|
||||
struct qm_config k2hk_qm_memmap = {
|
||||
.stat_cfg = 0x02a40000,
|
||||
.queue = (struct qm_reg_queue *)0x02a80000,
|
||||
.mngr_vbusm = 0x23a80000,
|
||||
.i_lram = 0x00100000,
|
||||
.proxy = (struct qm_reg_queue *)0x02ac0000,
|
||||
.status_ram = 0x02a06000,
|
||||
.mngr_cfg = (struct qm_cfg_reg *)0x02a02000,
|
||||
.intd_cfg = 0x02a0c000,
|
||||
.desc_mem = (struct descr_mem_setup_reg *)0x02a03000,
|
||||
.region_num = 64,
|
||||
.pdsp_cmd = 0x02a20000,
|
||||
.pdsp_ctl = 0x02a0f000,
|
||||
.pdsp_iram = 0x02a10000,
|
||||
.qpool_num = 4000,
|
||||
struct qm_config qm_memmap = {
|
||||
.stat_cfg = KS2_QM_QUEUE_STATUS_BASE,
|
||||
.queue = (void *)KS2_QM_MANAGER_QUEUES_BASE,
|
||||
.mngr_vbusm = KS2_QM_BASE_ADDRESS,
|
||||
.i_lram = KS2_QM_LINK_RAM_BASE,
|
||||
.proxy = (void *)KS2_QM_MANAGER_Q_PROXY_BASE,
|
||||
.status_ram = KS2_QM_STATUS_RAM_BASE,
|
||||
.mngr_cfg = (void *)KS2_QM_CONF_BASE,
|
||||
.intd_cfg = KS2_QM_INTD_CONF_BASE,
|
||||
.desc_mem = (void *)KS2_QM_DESC_SETUP_BASE,
|
||||
.region_num = KS2_QM_REGION_NUM,
|
||||
.pdsp_cmd = KS2_QM_PDSP1_CMD_BASE,
|
||||
.pdsp_ctl = KS2_QM_PDSP1_CTRL_BASE,
|
||||
.pdsp_iram = KS2_QM_PDSP1_IRAM_BASE,
|
||||
.qpool_num = KS2_QM_QPOOL_NUM,
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -52,12 +52,9 @@ inline int num_of_desc_to_reg(int num_descr)
|
|||
return 15;
|
||||
}
|
||||
|
||||
static int _qm_init(struct qm_config *cfg)
|
||||
int _qm_init(struct qm_config *cfg)
|
||||
{
|
||||
u32 j;
|
||||
|
||||
if (cfg == NULL)
|
||||
return QM_ERR;
|
||||
u32 j;
|
||||
|
||||
qm_cfg = cfg;
|
||||
|
||||
|
@ -82,12 +79,7 @@ static int _qm_init(struct qm_config *cfg)
|
|||
|
||||
int qm_init(void)
|
||||
{
|
||||
switch (soc_type) {
|
||||
case k2hk:
|
||||
return _qm_init(&k2hk_qm_memmap);
|
||||
}
|
||||
|
||||
return QM_ERR;
|
||||
return _qm_init(&qm_memmap);
|
||||
}
|
||||
|
||||
void qm_close(void)
|
||||
|
@ -294,11 +286,8 @@ static int _netcp_init(struct pktdma_cfg *netcp_cfg,
|
|||
/* Disable loopback in the tx direction */
|
||||
writel(0, &netcp->global->emulation_control);
|
||||
|
||||
/* TODO: make it dependend on a soc type variable */
|
||||
#ifdef CONFIG_SOC_K2HK
|
||||
/* Set QM base address, only for K2x devices */
|
||||
writel(0x23a80000, &netcp->global->qm_base_addr[0]);
|
||||
#endif
|
||||
writel(KS2_QM_BASE_ADDRESS, &netcp->global->qm_base_addr[0]);
|
||||
|
||||
/* Enable all channels. The current state isn't important */
|
||||
for (j = 0; j < netcp->tx_ch_num; j++) {
|
||||
|
|
|
@ -145,11 +145,20 @@ typedef volatile unsigned int *dv_reg_p;
|
|||
#define KS2_EFUSE_BOOTROM (KS2_DEVICE_STATE_CTRL_BASE + 0xc90)
|
||||
|
||||
/* Queue manager */
|
||||
#define KS2_QM_MANAGER_BASE 0x02a02000
|
||||
#define KS2_QM_BASE_ADDRESS 0x23a80000
|
||||
#define KS2_QM_CONF_BASE 0x02a02000
|
||||
#define KS2_QM_DESC_SETUP_BASE 0x02a03000
|
||||
#define KS2_QM_MANAGER_QUEUES_BASEi 0x02a80000
|
||||
#define KS2_QM_STATUS_RAM_BASE 0x02a06000
|
||||
#define KS2_QM_INTD_CONF_BASE 0x02a0c000
|
||||
#define KS2_QM_PDSP1_CMD_BASE 0x02a20000
|
||||
#define KS2_QM_PDSP1_CTRL_BASE 0x02a0f000
|
||||
#define KS2_QM_PDSP1_IRAM_BASE 0x02a10000
|
||||
#define KS2_QM_MANAGER_QUEUES_BASE 0x02a80000
|
||||
#define KS2_QM_MANAGER_Q_PROXY_BASE 0x02ac0000
|
||||
#define KS2_QM_QUEUE_STATUS_BASE 0x02a40000
|
||||
#define KS2_QM_LINK_RAM_BASE 0x00100000
|
||||
#define KS2_QM_REGION_NUM 64
|
||||
#define KS2_QM_QPOOL_NUM 4000
|
||||
|
||||
/* MSMC control */
|
||||
#define KS2_MSMC_CTRL_BASE 0x0bc00000
|
||||
|
|
Loading…
Reference in a new issue