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