blob: 1b3f36aebe11e47939c784aeb1ab8b410c567a36 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Darwin Ramboc5613142014-02-11 11:06:34 -08002/*
3 * Copyright 2013 Broadcom Corporation.
Darwin Ramboc5613142014-02-11 11:06:34 -08004 */
5
6#include <common.h>
7#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +09008#include <linux/errno.h>
Darwin Ramboc5613142014-02-11 11:06:34 -08009#include <asm/arch/sysmap.h>
10#include <asm/kona-common/clk.h>
11#include "clk-core.h"
12
13/* Enable appropriate clocks for a BSC/I2C port */
14int clk_bsc_enable(void *base)
15{
16 int ret;
17 char *bscstr, *apbstr;
18
19 switch ((u32) base) {
20 case PMU_BSC_BASE_ADDR:
21 /* PMU clock is always enabled */
22 return 0;
23 case BSC1_BASE_ADDR:
24 bscstr = "bsc1_clk";
25 apbstr = "bsc1_apb_clk";
26 break;
27 case BSC2_BASE_ADDR:
28 bscstr = "bsc2_clk";
29 apbstr = "bsc2_apb_clk";
30 break;
31 case BSC3_BASE_ADDR:
32 bscstr = "bsc3_clk";
33 apbstr = "bsc3_apb_clk";
34 break;
35 default:
36 printf("%s: base 0x%p not found\n", __func__, base);
37 return -EINVAL;
38 }
39
40 /* Note that the bus clock must be enabled first */
41
42 ret = clk_get_and_enable(apbstr);
43 if (ret)
44 return ret;
45
46 ret = clk_get_and_enable(bscstr);
47 if (ret)
48 return ret;
49
50 return 0;
51}