blob: c188ba6082a6f8c140b9d9325e5b9e77210de9a3 [file] [log] [blame]
Rohit Vaswani0eafbe92012-06-21 15:21:24 -07001/* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13#include <linux/kernel.h>
14#include <linux/clk.h>
15
16#include <mach/clk.h>
17
Rohit Vaswani2f3bb872011-07-13 14:22:04 -070018#include "clock.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019
20/*
21 * Clocks
22 */
23
Stephen Boydbb600ae2011-08-02 20:11:40 -070024static struct clk_lookup msm_clocks_fsm9xxx[] = {
Matt Wagantalle1a86062011-08-18 17:46:10 -070025 CLK_DUMMY("core_clk", ADM0_CLK, "msm_dmov", OFF),
Matt Wagantalle2522372011-08-17 14:52:21 -070026 CLK_DUMMY("core_clk", UART1_CLK, "msm_serial.0", OFF),
Rohit Vaswani0eafbe92012-06-21 15:21:24 -070027 CLK_DUMMY("core_clk", UART3_CLK, "msm_uim.2", OFF),
Matt Wagantallc4b3a4d2011-08-17 16:58:39 -070028 CLK_DUMMY("core_clk", CE_CLK, "qce.0", OFF),
Matt Wagantalld727efc2011-09-13 14:17:03 -070029 CLK_DUMMY("core_clk", CE_CLK, "qcota.0", OFF),
30 CLK_DUMMY("core_clk", CE_CLK, "qcrypto.0", OFF),
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070031};
32
Stephen Boydbb600ae2011-08-02 20:11:40 -070033struct clock_init_data fsm9xxx_clock_init_data __initdata = {
34 .table = msm_clocks_fsm9xxx,
35 .size = ARRAY_SIZE(msm_clocks_fsm9xxx),
36};