clock: mvebu new SoC changes for v3.15 (incremental pull #2)
- mvebu (Armada 375) - fix ratio register offest - mvebu (Armada 380) - expand core divider clock driver to support 380 SoC (enables nand support) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAABAgAGBQJTIwnaAAoJEP45WPkGe8ZnqzcQALBc089kYIWoWK4aQanMxUPb o86G/p3bUYiOQOI/jLCDlaSxRPehQzSns/II1PgOjbRVCXi+6HEqrOy5yVhRW3JL 8RPaIdZvZlTYOxcF7Zelni2s/j1YPUbgfzXtawzNH9QdM+iQuSLMXCrStoIkJXUz rCcg2KBNNW5aBcmQtLcDgavdNtT/QCa524uGYQTR5YZNFQlL8a78GrqjkUkgD6e0 RH0guVmu5Wd5l7McHjq/mbcMg6gguPJI7Y3ddDjdB+02zAoKzlQ05HJLfDp6sybS 8e7DPYnA7TRJV2LG2jwsA5yGy3yrW5nmPBlfogZD7KlKl/pbTgEXyzf0OiP+OiDQ 7DGFAnSX7mDX3gRiwaac6YbyLCC6aVnPPsPzO/9zm5jy2c+u3BJjC6QHN4CVciYk OMyZzllrEJ3iGubFZb3I0smZcmopmoDyZMIz+abnqFi71jQmWZnjpjoE7qHJqSCe RObuI4V9w6kcJjhriPI8HRK2sMiQQwfZ+OGofffHiyWLJ/EtvruTyayO5IIjjVXE aDuHKa0z8s7sS/QDRyIFqr2N32T4mPczPaUvk4B3OmF6z1m5v3kKSYj4kzgZFOYx 3DwBdxKITxcWqlHuNU0lGmV2n75cTISH3NXCO3bIsC1ZQAKjzLRuqBzypxrHzE6m CyRu1U7m5LHo7yqSg4gv =tx7z -----END PGP SIGNATURE----- Merge tag 'clk-mvebu-3xx-3.15-2' of git://git.infradead.org/linux-mvebu into clk-next-mvebu clock: mvebu new SoC changes for v3.15 (incremental pull #2) - mvebu (Armada 375) - fix ratio register offest - mvebu (Armada 380) - expand core divider clock driver to support 380 SoC (enables nand support)
This commit is contained in:
commit
06fa5ab32a
2 changed files with 28 additions and 2 deletions
|
@ -4,7 +4,10 @@ The following is a list of provided IDs and clock names on Armada 370/XP:
|
||||||
0 = nand (NAND clock)
|
0 = nand (NAND clock)
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
- compatible : must be "marvell,armada-370-corediv-clock"
|
- compatible : must be "marvell,armada-370-corediv-clock",
|
||||||
|
"marvell,armada-375-corediv-clock",
|
||||||
|
"marvell,armada-380-corediv-clock",
|
||||||
|
|
||||||
- reg : must be the register address of Core Divider control register
|
- reg : must be the register address of Core Divider control register
|
||||||
- #clock-cells : from common clock binding; shall be set to 1
|
- #clock-cells : from common clock binding; shall be set to 1
|
||||||
- clocks : must be set to the parent's phandle
|
- clocks : must be set to the parent's phandle
|
||||||
|
|
|
@ -204,6 +204,22 @@ static const struct clk_corediv_soc_desc armada370_corediv_soc = {
|
||||||
.ratio_offset = 0x8,
|
.ratio_offset = 0x8,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct clk_corediv_soc_desc armada380_corediv_soc = {
|
||||||
|
.descs = mvebu_corediv_desc,
|
||||||
|
.ndescs = ARRAY_SIZE(mvebu_corediv_desc),
|
||||||
|
.ops = {
|
||||||
|
.enable = clk_corediv_enable,
|
||||||
|
.disable = clk_corediv_disable,
|
||||||
|
.is_enabled = clk_corediv_is_enabled,
|
||||||
|
.recalc_rate = clk_corediv_recalc_rate,
|
||||||
|
.round_rate = clk_corediv_round_rate,
|
||||||
|
.set_rate = clk_corediv_set_rate,
|
||||||
|
},
|
||||||
|
.ratio_reload = BIT(8),
|
||||||
|
.enable_bit_offset = 16,
|
||||||
|
.ratio_offset = 0x4,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct clk_corediv_soc_desc armada375_corediv_soc = {
|
static const struct clk_corediv_soc_desc armada375_corediv_soc = {
|
||||||
.descs = mvebu_corediv_desc,
|
.descs = mvebu_corediv_desc,
|
||||||
.ndescs = ARRAY_SIZE(mvebu_corediv_desc),
|
.ndescs = ARRAY_SIZE(mvebu_corediv_desc),
|
||||||
|
@ -213,7 +229,7 @@ static const struct clk_corediv_soc_desc armada375_corediv_soc = {
|
||||||
.set_rate = clk_corediv_set_rate,
|
.set_rate = clk_corediv_set_rate,
|
||||||
},
|
},
|
||||||
.ratio_reload = BIT(8),
|
.ratio_reload = BIT(8),
|
||||||
.ratio_offset = 0x8,
|
.ratio_offset = 0x4,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void __init
|
static void __init
|
||||||
|
@ -290,3 +306,10 @@ static void __init armada375_corediv_clk_init(struct device_node *node)
|
||||||
}
|
}
|
||||||
CLK_OF_DECLARE(armada375_corediv_clk, "marvell,armada-375-corediv-clock",
|
CLK_OF_DECLARE(armada375_corediv_clk, "marvell,armada-375-corediv-clock",
|
||||||
armada375_corediv_clk_init);
|
armada375_corediv_clk_init);
|
||||||
|
|
||||||
|
static void __init armada380_corediv_clk_init(struct device_node *node)
|
||||||
|
{
|
||||||
|
return mvebu_corediv_clk_init(node, &armada380_corediv_soc);
|
||||||
|
}
|
||||||
|
CLK_OF_DECLARE(armada380_corediv_clk, "marvell,armada-380-corediv-clock",
|
||||||
|
armada380_corediv_clk_init);
|
||||||
|
|
Loading…
Add table
Reference in a new issue