2019-05-27 13:55:01 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-07-02 22:22:36 +07:00
|
|
|
/*
|
2009-11-06 17:35:34 +07:00
|
|
|
* Copyright (C) 2009 Lemote Inc.
|
2010-01-04 16:16:51 +07:00
|
|
|
* Author: Wu Zhangjin, wuzhangjin@gmail.com
|
2009-07-02 22:22:36 +07:00
|
|
|
*/
|
|
|
|
|
2020-03-25 10:55:00 +07:00
|
|
|
#include <linux/irqchip.h>
|
2020-05-27 20:17:21 +07:00
|
|
|
#include <linux/logic_pio.h>
|
2018-10-31 05:09:49 +07:00
|
|
|
#include <linux/memblock.h>
|
2014-11-20 04:52:50 +07:00
|
|
|
#include <asm/bootinfo.h>
|
2017-06-22 22:06:50 +07:00
|
|
|
#include <asm/traps.h>
|
2014-03-21 17:44:08 +07:00
|
|
|
#include <asm/smp-ops.h>
|
2017-06-22 22:06:50 +07:00
|
|
|
#include <asm/cacheflush.h>
|
2019-11-07 11:01:15 +07:00
|
|
|
#include <asm/fw/fw.h>
|
2009-07-02 22:22:36 +07:00
|
|
|
|
2009-07-02 22:23:03 +07:00
|
|
|
#include <loongson.h>
|
MIPS: Loongson: Add DMA support for LS7A
In the current market, the most used bridge chip on the Loongson platform
are RS780E and LS7A, the RS780E bridge chip is already supported by the
mainline kernel.
If use the default implementation of __phys_to_dma() and __dma_to_phys()
in dma-direct.h when CONFIG_ARCH_HAS_PHYS_TO_DMA is not set, it works
well used with LS7A on the Loongson single-way and multi-way platform,
and also works well used with RS780E on the Loongson single-way platform,
but the DMA address will be wrong on the non-node0 used with RS780E on
the Loongson multi-way platform.
Just as the description in the code comment, the devices get node id from
40 bit of HyperTransport bus, so we extract 2 bit node id (bit 44~45) from
48 bit address space of Loongson CPU and embed it into HyperTransport bus
(bit 37-38), this operation can be done only at the software level used
with RS780E on the Loongson multi-way platform, because it has no hardware
function to translate address of node id, this is a hardware compatibility
problem.
Device
|
| DMA address
|
Host Bridge
|
| HT bus address (40 bit)
|
CPU
|
| physical address (48 bit)
|
RAM
The LS7A has dma_node_id_offset field in the DMA route config register,
the hardware can use the dma_node_id_offset to translate address of
node id automatically, so we can get correct address when just use the
dma_pfn_offset field in struct device.
For the above reasons, in order to maintain downward compatibility
to support the RS780E bridge chip, it is better to use the platform
dependent implementation of __phys_to_dma() and __dma_to_phys().
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
2020-05-08 15:36:05 +07:00
|
|
|
#include <boot_param.h>
|
|
|
|
|
|
|
|
#define NODE_ID_OFFSET_ADDR ((void __iomem *)TO_UNCAC(0x1001041c))
|
|
|
|
|
|
|
|
u32 node_id_offset;
|
2009-07-02 22:22:36 +07:00
|
|
|
|
2017-06-22 22:06:50 +07:00
|
|
|
static void __init mips_nmi_setup(void)
|
|
|
|
{
|
|
|
|
void *base;
|
2020-05-23 22:50:34 +07:00
|
|
|
extern char except_vec_nmi[];
|
2017-06-22 22:06:50 +07:00
|
|
|
|
|
|
|
base = (void *)(CAC_BASE + 0x380);
|
2020-05-23 22:50:34 +07:00
|
|
|
memcpy(base, except_vec_nmi, 0x80);
|
2017-06-22 22:06:50 +07:00
|
|
|
flush_icache_range((unsigned long)base, (unsigned long)base + 0x80);
|
|
|
|
}
|
|
|
|
|
MIPS: Loongson: Add DMA support for LS7A
In the current market, the most used bridge chip on the Loongson platform
are RS780E and LS7A, the RS780E bridge chip is already supported by the
mainline kernel.
If use the default implementation of __phys_to_dma() and __dma_to_phys()
in dma-direct.h when CONFIG_ARCH_HAS_PHYS_TO_DMA is not set, it works
well used with LS7A on the Loongson single-way and multi-way platform,
and also works well used with RS780E on the Loongson single-way platform,
but the DMA address will be wrong on the non-node0 used with RS780E on
the Loongson multi-way platform.
Just as the description in the code comment, the devices get node id from
40 bit of HyperTransport bus, so we extract 2 bit node id (bit 44~45) from
48 bit address space of Loongson CPU and embed it into HyperTransport bus
(bit 37-38), this operation can be done only at the software level used
with RS780E on the Loongson multi-way platform, because it has no hardware
function to translate address of node id, this is a hardware compatibility
problem.
Device
|
| DMA address
|
Host Bridge
|
| HT bus address (40 bit)
|
CPU
|
| physical address (48 bit)
|
RAM
The LS7A has dma_node_id_offset field in the DMA route config register,
the hardware can use the dma_node_id_offset to translate address of
node id automatically, so we can get correct address when just use the
dma_pfn_offset field in struct device.
For the above reasons, in order to maintain downward compatibility
to support the RS780E bridge chip, it is better to use the platform
dependent implementation of __phys_to_dma() and __dma_to_phys().
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
2020-05-08 15:36:05 +07:00
|
|
|
void ls7a_early_config(void)
|
|
|
|
{
|
|
|
|
node_id_offset = ((readl(NODE_ID_OFFSET_ADDR) >> 8) & 0x1f) + 36;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rs780e_early_config(void)
|
|
|
|
{
|
|
|
|
node_id_offset = 37;
|
|
|
|
}
|
|
|
|
|
2009-07-02 22:22:36 +07:00
|
|
|
void __init prom_init(void)
|
|
|
|
{
|
2019-11-07 11:01:15 +07:00
|
|
|
fw_init_cmdline();
|
2009-07-02 22:22:36 +07:00
|
|
|
prom_init_env();
|
2014-03-21 17:44:02 +07:00
|
|
|
|
|
|
|
/* init base address of io space */
|
2020-05-27 20:17:21 +07:00
|
|
|
set_io_port_base(PCI_IOBASE);
|
2014-03-21 17:44:02 +07:00
|
|
|
|
MIPS: Loongson: Add DMA support for LS7A
In the current market, the most used bridge chip on the Loongson platform
are RS780E and LS7A, the RS780E bridge chip is already supported by the
mainline kernel.
If use the default implementation of __phys_to_dma() and __dma_to_phys()
in dma-direct.h when CONFIG_ARCH_HAS_PHYS_TO_DMA is not set, it works
well used with LS7A on the Loongson single-way and multi-way platform,
and also works well used with RS780E on the Loongson single-way platform,
but the DMA address will be wrong on the non-node0 used with RS780E on
the Loongson multi-way platform.
Just as the description in the code comment, the devices get node id from
40 bit of HyperTransport bus, so we extract 2 bit node id (bit 44~45) from
48 bit address space of Loongson CPU and embed it into HyperTransport bus
(bit 37-38), this operation can be done only at the software level used
with RS780E on the Loongson multi-way platform, because it has no hardware
function to translate address of node id, this is a hardware compatibility
problem.
Device
|
| DMA address
|
Host Bridge
|
| HT bus address (40 bit)
|
CPU
|
| physical address (48 bit)
|
RAM
The LS7A has dma_node_id_offset field in the DMA route config register,
the hardware can use the dma_node_id_offset to translate address of
node id automatically, so we can get correct address when just use the
dma_pfn_offset field in struct device.
For the above reasons, in order to maintain downward compatibility
to support the RS780E bridge chip, it is better to use the platform
dependent implementation of __phys_to_dma() and __dma_to_phys().
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
2020-05-08 15:36:05 +07:00
|
|
|
loongson_sysconf.early_config();
|
|
|
|
|
2014-06-26 10:41:28 +07:00
|
|
|
prom_init_numa_memory();
|
2009-11-06 17:35:34 +07:00
|
|
|
|
2019-10-20 22:01:35 +07:00
|
|
|
/* Hardcode to CPU UART 0 */
|
|
|
|
setup_8250_early_printk_port(TO_UNCAC(LOONGSON_REG_BASE + 0x1e0), 0, 1024);
|
|
|
|
|
2014-03-21 17:44:08 +07:00
|
|
|
register_smp_ops(&loongson3_smp_ops);
|
2017-06-22 22:06:50 +07:00
|
|
|
board_nmi_handler_setup = mips_nmi_setup;
|
2009-07-02 22:22:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init prom_free_prom_memory(void)
|
|
|
|
{
|
|
|
|
}
|
2020-03-25 10:55:00 +07:00
|
|
|
|
2020-05-27 20:17:21 +07:00
|
|
|
static __init void reserve_pio_range(void)
|
|
|
|
{
|
|
|
|
struct logic_pio_hwaddr *range;
|
|
|
|
|
|
|
|
range = kzalloc(sizeof(*range), GFP_ATOMIC);
|
|
|
|
if (!range)
|
|
|
|
return;
|
|
|
|
|
|
|
|
range->fwnode = &of_root->fwnode;
|
|
|
|
range->size = MMIO_LOWER_RESERVED;
|
|
|
|
range->hw_start = LOONGSON_PCIIO_BASE;
|
|
|
|
range->flags = LOGIC_PIO_CPU_MMIO;
|
|
|
|
|
|
|
|
if (logic_pio_register_range(range)) {
|
|
|
|
pr_err("Failed to reserve PIO range for legacy ISA\n");
|
|
|
|
goto free_range;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WARN(range->io_start != 0,
|
|
|
|
"Reserved PIO range does not start from 0\n"))
|
|
|
|
goto unregister;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* i8259 would access I/O space, so mapping must be done here.
|
|
|
|
* Please remove it when all drivers can be managed by logic_pio.
|
|
|
|
*/
|
|
|
|
ioremap_page_range(PCI_IOBASE, PCI_IOBASE + MMIO_LOWER_RESERVED,
|
|
|
|
LOONGSON_PCIIO_BASE,
|
|
|
|
pgprot_device(PAGE_KERNEL));
|
|
|
|
|
|
|
|
return;
|
|
|
|
unregister:
|
|
|
|
logic_pio_unregister_range(range);
|
|
|
|
free_range:
|
|
|
|
kfree(range);
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:55:00 +07:00
|
|
|
void __init arch_init_irq(void)
|
|
|
|
{
|
2020-05-27 20:17:21 +07:00
|
|
|
reserve_pio_range();
|
2020-03-25 10:55:00 +07:00
|
|
|
irqchip_init();
|
|
|
|
}
|