1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright (C) 2017 Broadcom 3*4882a593Smuzhiyun * 4*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or 5*4882a593Smuzhiyun * modify it under the terms of the GNU General Public License as 6*4882a593Smuzhiyun * published by the Free Software Foundation version 2. 7*4882a593Smuzhiyun * 8*4882a593Smuzhiyun * This program is distributed "as is" WITHOUT ANY WARRANTY of any 9*4882a593Smuzhiyun * kind, whether express or implied; without even the implied warranty 10*4882a593Smuzhiyun * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11*4882a593Smuzhiyun * GNU General Public License for more details. 12*4882a593Smuzhiyun */ 13*4882a593Smuzhiyun 14*4882a593Smuzhiyun #include <linux/kernel.h> 15*4882a593Smuzhiyun #include <linux/err.h> 16*4882a593Smuzhiyun #include <linux/clk-provider.h> 17*4882a593Smuzhiyun #include <linux/io.h> 18*4882a593Smuzhiyun #include <linux/of.h> 19*4882a593Smuzhiyun #include <linux/of_address.h> 20*4882a593Smuzhiyun 21*4882a593Smuzhiyun #include "clk-iproc.h" 22*4882a593Smuzhiyun hr2_armpll_init(struct device_node * node)23*4882a593Smuzhiyunstatic void __init hr2_armpll_init(struct device_node *node) 24*4882a593Smuzhiyun { 25*4882a593Smuzhiyun iproc_armpll_setup(node); 26*4882a593Smuzhiyun } 27*4882a593Smuzhiyun CLK_OF_DECLARE(hr2_armpll, "brcm,hr2-armpll", hr2_armpll_init); 28