mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
cddd459140
Add patches for linux-5.4. The patches are from NXP LSDK-20.04 release which was tagged LSDK-20.04-V5.4. https://source.codeaurora.org/external/qoriq/qoriq-components/linux/ For boards LS1021A-IOT, and Traverse-LS1043 which are not involved in LSDK, port the dts patches from 4.14. The patches are sorted into the following categories: 301-arch-xxxx 302-dts-xxxx 303-core-xxxx 701-net-xxxx 801-audio-xxxx 802-can-xxxx 803-clock-xxxx 804-crypto-xxxx 805-display-xxxx 806-dma-xxxx 807-gpio-xxxx 808-i2c-xxxx 809-jailhouse-xxxx 810-keys-xxxx 811-kvm-xxxx 812-pcie-xxxx 813-pm-xxxx 814-qe-xxxx 815-sata-xxxx 816-sdhc-xxxx 817-spi-xxxx 818-thermal-xxxx 819-uart-xxxx 820-usb-xxxx 821-vfio-xxxx Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
62 lines
2.4 KiB
Diff
62 lines
2.4 KiB
Diff
From e2b0ebb44e91e3492f26d21218fb7ea5e14190ec Mon Sep 17 00:00:00 2001
|
|
From: Haiying Wang <Haiying.Wang@nxp.com>
|
|
Date: Thu, 20 Apr 2017 11:54:22 -0400
|
|
Subject: [PATCH] soc: fsl: dpio: change CENA regs to be cacheable
|
|
|
|
Change cache enabled regsiter accessed to be cacheable
|
|
plus non-shareable to meet the performance requirement.
|
|
QMan's CENA region contains registers and structures that
|
|
are 64byte in size and are inteneded to be accessed using a
|
|
single 64 byte bus transaction, therefore this portal
|
|
memory should be configured as cache-enabled. Also because
|
|
the write allocate stash transcations of QBMan should be
|
|
issued as cachable and non-coherent(non-sharable), we
|
|
need to configure this region to be non-shareable.
|
|
|
|
Signed-off-by: Haiying Wang <Haiying.Wang@nxp.com>
|
|
---
|
|
drivers/soc/fsl/dpio/dpio-driver.c | 17 ++++++++++-------
|
|
1 file changed, 10 insertions(+), 7 deletions(-)
|
|
|
|
--- a/drivers/soc/fsl/dpio/dpio-driver.c
|
|
+++ b/drivers/soc/fsl/dpio/dpio-driver.c
|
|
@@ -27,6 +27,11 @@ MODULE_LICENSE("Dual BSD/GPL");
|
|
MODULE_AUTHOR("Freescale Semiconductor, Inc");
|
|
MODULE_DESCRIPTION("DPIO Driver");
|
|
|
|
+#define PROT_NORMAL_NS (PTE_TYPE_PAGE | PTE_AF | PTE_PXN | PTE_UXN | PTE_DIRTY | PTE_WRITE | PTE_ATTRINDX(MT_NORMAL))
|
|
+
|
|
+#define ioremap_cache_ns(addr, size) __ioremap((addr), (size), __pgprot(PROT_NORMAL_NS))
|
|
+
|
|
+
|
|
struct dpio_priv {
|
|
struct dpaa2_io *io;
|
|
};
|
|
@@ -200,13 +205,11 @@ static int dpaa2_dpio_probe(struct fsl_m
|
|
if (dpio_dev->obj_desc.region_count < 3) {
|
|
/* No support for DDR backed portals, use classic mapping */
|
|
/*
|
|
- * Set the CENA regs to be the cache inhibited area of the
|
|
- * portal to avoid coherency issues if a user migrates to
|
|
- * another core.
|
|
+ * Set the CENA regs to be the cache enabled area of the portal to
|
|
+ * achieve the best performance.
|
|
*/
|
|
- desc.regs_cena = devm_memremap(dev, dpio_dev->regions[1].start,
|
|
- resource_size(&dpio_dev->regions[1]),
|
|
- MEMREMAP_WC);
|
|
+ desc.regs_cena = ioremap_cache_ns(dpio_dev->regions[0].start,
|
|
+ resource_size(&dpio_dev->regions[0]));
|
|
} else {
|
|
desc.regs_cena = devm_memremap(dev, dpio_dev->regions[2].start,
|
|
resource_size(&dpio_dev->regions[2]),
|
|
@@ -214,7 +217,7 @@ static int dpaa2_dpio_probe(struct fsl_m
|
|
}
|
|
|
|
if (IS_ERR(desc.regs_cena)) {
|
|
- dev_err(dev, "devm_memremap failed\n");
|
|
+ dev_err(dev, "ioremap_cache_ns failed\n");
|
|
err = PTR_ERR(desc.regs_cena);
|
|
goto err_allocate_irqs;
|
|
}
|