dma.c 268 B

1234567891011121314
  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. #include <linux/swiotlb.h>
  8. #include <asm/bootinfo.h>
  9. void __init plat_swiotlb_setup(void)
  10. {
  11. swiotlb_init(true, SWIOTLB_VERBOSE);
  12. }