xref: /linux/arch/mips/sibyte/common/dma.c (revision 7a309195d11cde854eb75559fbd6b48f9e518f25)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *	DMA support for Broadcom SiByte platforms.
4  *
5  *	Copyright (c) 2018  Maciej W. Rozycki
6  */
7 
8 #include <linux/swiotlb.h>
9 #include <asm/bootinfo.h>
10 
11 void __init plat_swiotlb_setup(void)
12 {
13 	swiotlb_init(1);
14 }
15