sead3-setup.c 522 B

1234567891011121314151617181920
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
  7. */
  8. #include <linux/init.h>
  9. int coherentio; /* 0 => no DMA cache coherency (may be set by user) */
  10. int hw_coherentio; /* 0 => no HW DMA cache coherency (reflects real HW) */
  11. const char *get_system_type(void)
  12. {
  13. return "MIPS SEAD3";
  14. }
  15. void __init plat_mem_setup(void)
  16. {
  17. }