forked from luck/tmp_suning_uos_patched
c942fddf87
Based on 3 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version [author] [kishon] [vijay] [abraham] [i] [kishon]@[ti] [com] this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version [author] [graeme] [gregory] [gg]@[slimlogic] [co] [uk] [author] [kishon] [vijay] [abraham] [i] [kishon]@[ti] [com] [based] [on] [twl6030]_[usb] [c] [author] [hema] [hk] [hemahk]@[ti] [com] this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 1105 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070033.202006027@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Device Tree support for Mediatek SoCs
|
|
*
|
|
* Copyright (c) 2014 MundoReader S.L.
|
|
* Author: Matthias Brugger <matthias.bgg@gmail.com>
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/io.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <linux/of.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/clocksource.h>
|
|
|
|
|
|
#define GPT6_CON_MT65xx 0x10008060
|
|
#define GPT_ENABLE 0x31
|
|
|
|
static void __init mediatek_timer_init(void)
|
|
{
|
|
void __iomem *gpt_base;
|
|
|
|
if (of_machine_is_compatible("mediatek,mt6589") ||
|
|
of_machine_is_compatible("mediatek,mt7623") ||
|
|
of_machine_is_compatible("mediatek,mt8135") ||
|
|
of_machine_is_compatible("mediatek,mt8127")) {
|
|
/* turn on GPT6 which ungates arch timer clocks */
|
|
gpt_base = ioremap(GPT6_CON_MT65xx, 0x04);
|
|
|
|
/* enable clock and set to free-run */
|
|
writel(GPT_ENABLE, gpt_base);
|
|
iounmap(gpt_base);
|
|
}
|
|
|
|
of_clk_init(NULL);
|
|
timer_probe();
|
|
};
|
|
|
|
static const char * const mediatek_board_dt_compat[] = {
|
|
"mediatek,mt2701",
|
|
"mediatek,mt6589",
|
|
"mediatek,mt6592",
|
|
"mediatek,mt7623",
|
|
"mediatek,mt7629",
|
|
"mediatek,mt8127",
|
|
"mediatek,mt8135",
|
|
NULL,
|
|
};
|
|
|
|
DT_MACHINE_START(MEDIATEK_DT, "Mediatek Cortex-A7 (Device Tree)")
|
|
.dt_compat = mediatek_board_dt_compat,
|
|
.init_time = mediatek_timer_init,
|
|
MACHINE_END
|