aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mbus.h
diff options
context:
space:
mode:
authorMarcin Wojtas <mw@semihalf.com>2016-03-14 09:39:02 +0100
committerDavid S. Miller <davem@davemloft.net>2016-03-14 12:19:46 -0400
commitf2900acea8018c4525ddaa86c7f7cd8afd3f0cc4 (patch)
tree8d9374081accb02afb6821332ca5512f169804a2 /include/linux/mbus.h
parentARM: dts: armada-xp-openblocks-ax3-4: Add BM support (diff)
downloadlinux-dev-f2900acea8018c4525ddaa86c7f7cd8afd3f0cc4.tar.xz
linux-dev-f2900acea8018c4525ddaa86c7f7cd8afd3f0cc4.zip
bus: mvebu-mbus: provide api for obtaining IO and DRAM window information
This commit enables finding appropriate mbus window and obtaining its target id and attribute for given physical address in two separate routines, both for IO and DRAM windows. This functionality is needed for Armada XP/38x Network Controller's Buffer Manager and PnC configuration. [gregory.clement@free-electrons.com: Fix size test for mvebu_mbus_get_dram_win_info] Signed-off-by: Marcin Wojtas <mw@semihalf.com> [DRAM window information reference in LKv3.10] Signed-off-by: Evan Wang <xswang@marvell.com> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mbus.h')
-rw-r--r--include/linux/mbus.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mbus.h b/include/linux/mbus.h
index 1f7bc630d225..ea34a867caa0 100644
--- a/include/linux/mbus.h
+++ b/include/linux/mbus.h
@@ -69,6 +69,9 @@ static inline const struct mbus_dram_target_info *mv_mbus_dram_info_nooverlap(vo
int mvebu_mbus_save_cpu_target(u32 *store_addr);
void mvebu_mbus_get_pcie_mem_aperture(struct resource *res);
void mvebu_mbus_get_pcie_io_aperture(struct resource *res);
+int mvebu_mbus_get_dram_win_info(phys_addr_t phyaddr, u8 *target, u8 *attr);
+int mvebu_mbus_get_io_win_info(phys_addr_t phyaddr, u32 *size, u8 *target,
+ u8 *attr);
int mvebu_mbus_add_window_remap_by_id(unsigned int target,
unsigned int attribute,
phys_addr_t base, size_t size,