| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Device Tree support for Rockchip SoCs |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (c) 2013 MundoReader S.L. |
|---|
| 5 | 6 | * Author: Heiko Stuebner <heiko@sntech.de> |
|---|
| 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, or |
|---|
| 10 | | - * (at your option) any later version. |
|---|
| 11 | | - * |
|---|
| 12 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 13 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 | | - * GNU General Public License for more details. |
|---|
| 16 | 7 | */ |
|---|
| 17 | 8 | |
|---|
| 18 | 9 | #include <linux/kernel.h> |
|---|
| 19 | 10 | #include <linux/init.h> |
|---|
| 11 | +#include <linux/io.h> |
|---|
| 12 | +#include <linux/of_clk.h> |
|---|
| 20 | 13 | #include <linux/of_platform.h> |
|---|
| 21 | 14 | #include <linux/irqchip.h> |
|---|
| 22 | | -#include <linux/clk-provider.h> |
|---|
| 23 | 15 | #include <linux/clocksource.h> |
|---|
| 24 | 16 | #include <linux/mfd/syscon.h> |
|---|
| 25 | 17 | #include <linux/regmap.h> |
|---|
| .. | .. |
|---|
| 70 | 62 | "rockchip,rk3188", |
|---|
| 71 | 63 | "rockchip,rk3228", |
|---|
| 72 | 64 | "rockchip,rk3288", |
|---|
| 65 | + "rockchip,rv1106", |
|---|
| 73 | 66 | "rockchip,rv1108", |
|---|
| 74 | 67 | NULL, |
|---|
| 75 | 68 | }; |
|---|