blob: 290a2846a86b654034293308f33602114c85dae1 [file] [log] [blame]
Stefan Wahrene1098e52018-11-10 16:12:35 +01001// SPDX-License-Identifier: GPL-2.0+
Eric Anholt5e63dcc2015-12-15 15:35:58 -08002/*
3 * Copyright (C) 2015 Broadcom
Eric Anholt5e63dcc2015-12-15 15:35:58 -08004 */
5
6#include <linux/clk.h>
7#include <linux/clk-provider.h>
Stephen Boyd62e59c42019-04-18 15:20:22 -07008#include <linux/io.h>
Eric Anholt5e63dcc2015-12-15 15:35:58 -08009#include <linux/module.h>
10#include <linux/platform_device.h>
11#include <dt-bindings/clock/bcm2835-aux.h>
12
13#define BCM2835_AUXIRQ 0x00
14#define BCM2835_AUXENB 0x04
15
16static int bcm2835_aux_clk_probe(struct platform_device *pdev)
17{
18 struct device *dev = &pdev->dev;
Stephen Boydb19f0092016-06-01 16:15:03 -070019 struct clk_hw_onecell_data *onecell;
Eric Anholt5e63dcc2015-12-15 15:35:58 -080020 const char *parent;
21 struct clk *parent_clk;
Eric Anholt5e63dcc2015-12-15 15:35:58 -080022 void __iomem *reg, *gate;
23
24 parent_clk = devm_clk_get(dev, NULL);
25 if (IS_ERR(parent_clk))
26 return PTR_ERR(parent_clk);
27 parent = __clk_get_name(parent_clk);
28
YueHaibing4d3a3692019-10-14 22:36:42 +080029 reg = devm_platform_ioremap_resource(pdev, 0);
Vladimir Zapolskiy4d3ac662016-03-06 03:21:35 +020030 if (IS_ERR(reg))
31 return PTR_ERR(reg);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080032
Kees Cook0ed2dd02018-05-08 16:08:53 -070033 onecell = devm_kmalloc(dev,
34 struct_size(onecell, hws,
35 BCM2835_AUX_CLOCK_COUNT),
36 GFP_KERNEL);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080037 if (!onecell)
38 return -ENOMEM;
Stephen Boydb19f0092016-06-01 16:15:03 -070039 onecell->num = BCM2835_AUX_CLOCK_COUNT;
Eric Anholt5e63dcc2015-12-15 15:35:58 -080040
41 gate = reg + BCM2835_AUXENB;
Stephen Boydb19f0092016-06-01 16:15:03 -070042 onecell->hws[BCM2835_AUX_CLOCK_UART] =
43 clk_hw_register_gate(dev, "aux_uart", parent, 0, gate, 0, 0, NULL);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080044
Stephen Boydb19f0092016-06-01 16:15:03 -070045 onecell->hws[BCM2835_AUX_CLOCK_SPI1] =
46 clk_hw_register_gate(dev, "aux_spi1", parent, 0, gate, 1, 0, NULL);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080047
Stephen Boydb19f0092016-06-01 16:15:03 -070048 onecell->hws[BCM2835_AUX_CLOCK_SPI2] =
49 clk_hw_register_gate(dev, "aux_spi2", parent, 0, gate, 2, 0, NULL);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080050
Stephen Boydb19f0092016-06-01 16:15:03 -070051 return of_clk_add_hw_provider(pdev->dev.of_node, of_clk_hw_onecell_get,
52 onecell);
Eric Anholt5e63dcc2015-12-15 15:35:58 -080053}
54
55static const struct of_device_id bcm2835_aux_clk_of_match[] = {
56 { .compatible = "brcm,bcm2835-aux", },
57 {},
58};
59MODULE_DEVICE_TABLE(of, bcm2835_aux_clk_of_match);
60
61static struct platform_driver bcm2835_aux_clk_driver = {
62 .driver = {
63 .name = "bcm2835-aux-clk",
64 .of_match_table = bcm2835_aux_clk_of_match,
65 },
66 .probe = bcm2835_aux_clk_probe,
67};
68builtin_platform_driver(bcm2835_aux_clk_driver);
69
70MODULE_AUTHOR("Eric Anholt <eric@anholt.net>");
71MODULE_DESCRIPTION("BCM2835 auxiliary peripheral clock driver");
Stefan Wahren819ed0a2018-10-23 13:06:06 +020072MODULE_LICENSE("GPL");