mediatek.c 863 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Device Tree support for Mediatek SoCs
  3. *
  4. * Copyright (c) 2014 MundoReader S.L.
  5. * Author: Matthias Brugger <matthias.bgg@gmail.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/init.h>
  17. #include <asm/mach/arch.h>
  18. static const char * const mediatek_board_dt_compat[] = {
  19. "mediatek,mt6589",
  20. NULL,
  21. };
  22. DT_MACHINE_START(MEDIATEK_DT, "Mediatek Cortex-A7 (Device Tree)")
  23. .dt_compat = mediatek_board_dt_compat,
  24. MACHINE_END