1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2013 Emilio López
6 * Copyright 2013 Chen-Yu Tsai
10 #include <linux/clk-provider.h>
13 #include <linux/of_address.h>
14 #include <linux/slab.h>
16 static DEFINE_SPINLOCK(gmac_lock);
19 * sun7i_a20_gmac_clk_setup - Setup function for A20/A31 GMAC clock module
21 * This clock looks something like this
22 * ________________________
23 * MII TX clock from PHY >-----|___________ _________|----> to GMAC core
24 * GMAC Int. RGMII TX clk >----|___________\__/__gate---|----> to PHY
25 * Ext. 125MHz RGMII TX clk >--|__divider__/ |
26 * |________________________|
28 * The external 125 MHz reference is optional, i.e. GMAC can use its
29 * internal TX clock just fine. The A31 GMAC clock module does not have
30 * the divider controls for the external reference.
32 * To keep it simple, let the GMAC use either the MII TX clock for MII mode,
33 * and its internal TX clock for GMII and RGMII modes. The GMAC driver should
34 * select the appropriate source and gate/ungate the output to the PHY.
36 * Only the GMAC should use this clock. Altering the clock so that it doesn't
37 * match the GMAC's operation parameters will result in the GMAC not being
38 * able to send traffic out. The GMAC driver should set the clock rate and
39 * enable/disable this clock to configure the required state. The clock
40 * driver then responds by auto-reparenting the clock.
43 #define SUN7I_A20_GMAC_GPIT 2
44 #define SUN7I_A20_GMAC_MASK 0x3
45 #define SUN7I_A20_GMAC_PARENTS 2
47 static u32 sun7i_a20_gmac_mux_table[SUN7I_A20_GMAC_PARENTS] = {
48 0x00, /* Select mii_phy_tx_clk */
49 0x02, /* Select gmac_int_tx_clk */
52 static void __init sun7i_a20_gmac_clk_setup(struct device_node *node)
56 struct clk_gate *gate;
57 const char *clk_name = node->name;
58 const char *parents[SUN7I_A20_GMAC_PARENTS];
61 if (of_property_read_string(node, "clock-output-names", &clk_name))
64 /* allocate mux and gate clock structs */
65 mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL);
69 gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL);
73 /* gmac clock requires exactly 2 parents */
74 if (of_clk_parent_fill(node, parents, 2) != 2)
77 reg = of_iomap(node, 0);
81 /* set up gate and fixed rate properties */
83 gate->bit_idx = SUN7I_A20_GMAC_GPIT;
84 gate->lock = &gmac_lock;
86 mux->mask = SUN7I_A20_GMAC_MASK;
87 mux->table = sun7i_a20_gmac_mux_table;
88 mux->lock = &gmac_lock;
90 clk = clk_register_composite(NULL, clk_name,
91 parents, SUN7I_A20_GMAC_PARENTS,
92 &mux->hw, &clk_mux_ops,
94 &gate->hw, &clk_gate_ops,
100 of_clk_add_provider(node, of_clk_src_simple_get, clk);
111 CLK_OF_DECLARE(sun7i_a20_gmac, "allwinner,sun7i-a20-gmac-clk",
112 sun7i_a20_gmac_clk_setup);