mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
7efec0acca
Manually rebased:
bcm4908/patches-5.15/071-v6.1-0001-net-broadcom-bcm4908_enet-handle-EPROBE_DEFER-when-g.patch
bcm53xx/patches-5.15/180-usb-xhci-add-support-for-performing-fake-doorbell.patch
ipq40xx/patches-5.15/902-dts-ipq4019-ap-dk04.1.patch[*]
bcm27xx/patches-5.15/950-0600-xhci-quirks-add-link-TRB-quirk-for-VL805.patch
bcm27xx/patches-5.15/950-0606-usb-xhci-add-VLI_TRB_CACHE_BUG-quirk.patch
bcm27xx/patches-5.15/950-0717-usb-xhci-add-a-quirk-for-Superspeed-bulk-OUT-transfe.patch
Removed upstreamed:
backport-5.15/735-v6.5-net-bgmac-postpone-turning-IRQs-off-to-avoid-SoC-han.patch[1]
backport-5.15/817-v6.5-01-leds-trigger-netdev-Recheck-NETDEV_LED_MODE_LINKUP-o.patch[2]
pending-5.15/143-jffs2-reduce-stack-usage-in-jffs2_build_xattr_subsys.patch[3]
pending-5.15/160-workqueue-fix-enum-type-for-gcc-13.patch[4]
bcm53xx/patches-5.15/036-v6.5-0003-ARM-dts-BCM5301X-Drop-clock-names-from-the-SPI-node.patch[5]
bcm53xx/patches-5.15/036-v6.5-0015-ARM-dts-BCM5301X-fix-duplex-full-full-duplex.patch[6]
ipq807x/patches-5.15/0048-v6.1-clk-qcom-reset-Allow-specifying-custom-reset-delay.patch[7]
ipq807x/patches-5.15/0049-v6.2-clk-qcom-reset-support-resetting-multiple-bits.patch[8]
All other patches automatically rebased.
1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=02474292a44205c1eb5a03634ead155a3c9134f4
2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=86b93cbfe104e99fd3d25a49748b99fb88101573
3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=79b9ab357b6f5675007f4c02ff8765cbd8dc06a2
4. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=d528faa9e828b9fc46dfb684a2a9fd8c2e860ed8
5. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=5899bc4058e89d5110a23797ff94439c53b77c25
6. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=95afd2c7c7d26087730dc938709e025a303e5499
7. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=40844343a8853a08b049d50c967e2a1e28f0ece6
8. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.123&id=6ad5ded420f5d96f7c65b68135f5787a1c7e58d7
Build system: x86/64
Build-tested: ramips/tplink_archer-a6-v3
Run-tested: ramips/tplink_archer-a6-v3
Co-authored-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John Audia <therealgraysky@proton.me>
[rebased ipq40xx/patches-5.15/902-dts-ipq4019-ap-dk04.1.patch ]
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 8590531048
)
[Refreshed on top of openwrt-23.05]
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
96 lines
3.4 KiB
Diff
96 lines
3.4 KiB
Diff
From 0074f3f2b1e43d3cedd97e47fb6980db6d2ba79e Mon Sep 17 00:00:00 2001
|
|
From: Colin Foster <colin.foster@in-advantage.com>
|
|
Date: Sun, 13 Mar 2022 15:45:24 -0700
|
|
Subject: [PATCH 2/2] regmap: allow a defined reg_base to be added to every
|
|
address
|
|
|
|
There's an inconsistency that arises when a register set can be accessed
|
|
internally via MMIO, or externally via SPI. The VSC7514 chip allows both
|
|
modes of operation. When internally accessed, the system utilizes __iomem,
|
|
devm_ioremap_resource, and devm_regmap_init_mmio.
|
|
|
|
For SPI it isn't possible to utilize memory-mapped IO. To properly operate,
|
|
the resource base must be added to the register before every operation.
|
|
|
|
Signed-off-by: Colin Foster <colin.foster@in-advantage.com>
|
|
Link: https://lore.kernel.org/r/20220313224524.399947-3-colin.foster@in-advantage.com
|
|
Signed-off-by: Mark Brown <broonie@kernel.org>
|
|
---
|
|
drivers/base/regmap/internal.h | 1 +
|
|
drivers/base/regmap/regmap.c | 6 ++++++
|
|
include/linux/regmap.h | 3 +++
|
|
3 files changed, 10 insertions(+)
|
|
|
|
--- a/drivers/base/regmap/internal.h
|
|
+++ b/drivers/base/regmap/internal.h
|
|
@@ -63,6 +63,7 @@ struct regmap {
|
|
regmap_unlock unlock;
|
|
void *lock_arg; /* This is passed to lock/unlock functions */
|
|
gfp_t alloc_flags;
|
|
+ unsigned int reg_base;
|
|
|
|
struct device *dev; /* Device we do I/O on */
|
|
void *work_buf; /* Scratch buffer used to format I/O */
|
|
--- a/drivers/base/regmap/regmap.c
|
|
+++ b/drivers/base/regmap/regmap.c
|
|
@@ -821,6 +821,8 @@ struct regmap *__regmap_init(struct devi
|
|
else
|
|
map->alloc_flags = GFP_KERNEL;
|
|
|
|
+ map->reg_base = config->reg_base;
|
|
+
|
|
map->format.reg_bytes = DIV_ROUND_UP(config->reg_bits, 8);
|
|
map->format.pad_bytes = config->pad_bits / 8;
|
|
map->format.reg_downshift = config->reg_downshift;
|
|
@@ -1736,6 +1738,7 @@ static int _regmap_raw_write_impl(struct
|
|
return ret;
|
|
}
|
|
|
|
+ reg += map->reg_base;
|
|
reg >>= map->format.reg_downshift;
|
|
map->format.format_reg(map->work_buf, reg, map->reg_shift);
|
|
regmap_set_work_buf_flag_mask(map, map->format.reg_bytes,
|
|
@@ -1907,6 +1910,7 @@ static int _regmap_bus_formatted_write(v
|
|
return ret;
|
|
}
|
|
|
|
+ reg += map->reg_base;
|
|
reg >>= map->format.reg_downshift;
|
|
map->format.format_write(map, reg, val);
|
|
|
|
@@ -2349,6 +2353,7 @@ static int _regmap_raw_multi_reg_write(s
|
|
unsigned int reg = regs[i].reg;
|
|
unsigned int val = regs[i].def;
|
|
trace_regmap_hw_write_start(map, reg, 1);
|
|
+ reg += map->reg_base;
|
|
reg >>= map->format.reg_downshift;
|
|
map->format.format_reg(u8, reg, map->reg_shift);
|
|
u8 += reg_bytes + pad_bytes;
|
|
@@ -2677,6 +2682,7 @@ static int _regmap_raw_read(struct regma
|
|
return ret;
|
|
}
|
|
|
|
+ reg += map->reg_base;
|
|
reg >>= map->format.reg_downshift;
|
|
map->format.format_reg(map->work_buf, reg, map->reg_shift);
|
|
regmap_set_work_buf_flag_mask(map, map->format.reg_bytes,
|
|
--- a/include/linux/regmap.h
|
|
+++ b/include/linux/regmap.h
|
|
@@ -239,6 +239,8 @@ typedef void (*regmap_unlock)(void *);
|
|
* used.
|
|
* @reg_downshift: The number of bits to downshift the register before
|
|
* performing any operations.
|
|
+ * @reg_base: Value to be added to every register address before performing any
|
|
+ * operation.
|
|
* @pad_bits: Number of bits of padding between register and value.
|
|
* @val_bits: Number of bits in a register value, mandatory.
|
|
*
|
|
@@ -363,6 +365,7 @@ struct regmap_config {
|
|
int reg_bits;
|
|
int reg_stride;
|
|
int reg_downshift;
|
|
+ unsigned int reg_base;
|
|
int pad_bits;
|
|
int val_bits;
|
|
|