mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 16:53:58 -05:00
powerpc: Move DMA64_PROPNAME define to a header
Avoid redefining the same value in multiple source. Signed-off-by: Michal Suchanek <msuchanek@suse.de> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20230817162411.429-1-msuchanek@suse.de
This commit is contained in:
parent
7f3c5d099b
commit
89c9ce1c99
3 changed files with 4 additions and 6 deletions
|
@ -28,6 +28,9 @@
|
|||
#define IOMMU_PAGE_MASK(tblptr) (~((1 << (tblptr)->it_page_shift) - 1))
|
||||
#define IOMMU_PAGE_ALIGN(addr, tblptr) ALIGN(addr, IOMMU_PAGE_SIZE(tblptr))
|
||||
|
||||
#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
|
||||
#define DMA64_PROPNAME "linux,dma64-ddr-window-info"
|
||||
|
||||
/* Boot time flags */
|
||||
extern int iommu_is_off;
|
||||
extern int iommu_force_on;
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include <asm/kexec_ranges.h>
|
||||
#include <asm/crashdump-ppc64.h>
|
||||
#include <asm/mmzone.h>
|
||||
#include <asm/iommu.h>
|
||||
#include <asm/prom.h>
|
||||
#include <asm/plpks.h>
|
||||
|
||||
|
@ -1208,8 +1209,6 @@ int setup_new_fdt_ppc64(const struct kimage *image, void *fdt,
|
|||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
|
||||
#define DMA64_PROPNAME "linux,dma64-ddr-window-info"
|
||||
ret = update_pci_dma_nodes(fdt, DIRECT64_PROPNAME);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
@ -1217,8 +1216,6 @@ int setup_new_fdt_ppc64(const struct kimage *image, void *fdt,
|
|||
ret = update_pci_dma_nodes(fdt, DMA64_PROPNAME);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
#undef DMA64_PROPNAME
|
||||
#undef DIRECT64_PROPNAME
|
||||
|
||||
/* Update memory reserve map */
|
||||
ret = get_reserved_memory_ranges(&rmem);
|
||||
|
|
|
@ -395,8 +395,6 @@ static LIST_HEAD(dma_win_list);
|
|||
static DEFINE_SPINLOCK(dma_win_list_lock);
|
||||
/* protects initializing window twice for same device */
|
||||
static DEFINE_MUTEX(dma_win_init_mutex);
|
||||
#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"
|
||||
#define DMA64_PROPNAME "linux,dma64-ddr-window-info"
|
||||
|
||||
static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn,
|
||||
unsigned long num_pfn, const void *arg)
|
||||
|
|
Loading…
Add table
Reference in a new issue