1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright (C) 2015 Broadcom Corporation 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 #include <linux/init.h> 14*4882a593Smuzhiyun #include <linux/clk-provider.h> 15*4882a593Smuzhiyun #include <linux/of.h> 16*4882a593Smuzhiyun #include "clk-iproc.h" 17*4882a593Smuzhiyun bcm63138_armpll_init(struct device_node * node)18*4882a593Smuzhiyunstatic void __init bcm63138_armpll_init(struct device_node *node) 19*4882a593Smuzhiyun { 20*4882a593Smuzhiyun iproc_armpll_setup(node); 21*4882a593Smuzhiyun } 22*4882a593Smuzhiyun CLK_OF_DECLARE(bcm63138_armpll, "brcm,bcm63138-armpll", bcm63138_armpll_init); 23