blob: 4b176358770ef65c4f9b167ed5ba95e368a89e7a [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
2 *
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),
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070027 CLK_DUMMY("ce_clk", CE_CLK, NULL, OFF),
28};
29
Stephen Boydbb600ae2011-08-02 20:11:40 -070030struct clock_init_data fsm9xxx_clock_init_data __initdata = {
31 .table = msm_clocks_fsm9xxx,
32 .size = ARRAY_SIZE(msm_clocks_fsm9xxx),
33};