|
@@ -481,6 +481,45 @@ static void sun6i_a31_get_pll6_factors(u32 *freq, u32 parent_rate,
|
|
|
*n = DIV_ROUND_UP(div, (*k+1)) - 1;
|
|
*n = DIV_ROUND_UP(div, (*k+1)) - 1;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+/**
|
|
|
|
|
+ * sun5i_a13_get_ahb_factors() - calculates m, p factors for AHB
|
|
|
|
|
+ * AHB rate is calculated as follows
|
|
|
|
|
+ * rate = parent_rate >> p
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+static void sun5i_a13_get_ahb_factors(u32 *freq, u32 parent_rate,
|
|
|
|
|
+ u8 *n, u8 *k, u8 *m, u8 *p)
|
|
|
|
|
+{
|
|
|
|
|
+ u32 div;
|
|
|
|
|
+
|
|
|
|
|
+ /* divide only */
|
|
|
|
|
+ if (parent_rate < *freq)
|
|
|
|
|
+ *freq = parent_rate;
|
|
|
|
|
+
|
|
|
|
|
+ /*
|
|
|
|
|
+ * user manual says valid speed is 8k ~ 276M, but tests show it
|
|
|
|
|
+ * can work at speeds up to 300M, just after reparenting to pll6
|
|
|
|
|
+ */
|
|
|
|
|
+ if (*freq < 8000)
|
|
|
|
|
+ *freq = 8000;
|
|
|
|
|
+ if (*freq > 300000000)
|
|
|
|
|
+ *freq = 300000000;
|
|
|
|
|
+
|
|
|
|
|
+ div = order_base_2(DIV_ROUND_UP(parent_rate, *freq));
|
|
|
|
|
+
|
|
|
|
|
+ /* p = 0 ~ 3 */
|
|
|
|
|
+ if (div > 3)
|
|
|
|
|
+ div = 3;
|
|
|
|
|
+
|
|
|
|
|
+ *freq = parent_rate >> div;
|
|
|
|
|
+
|
|
|
|
|
+ /* we were called to round the frequency, we can now return */
|
|
|
|
|
+ if (p == NULL)
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
|
|
+ *p = div;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* sun4i_get_apb1_factors() - calculates m, p factors for APB1
|
|
* sun4i_get_apb1_factors() - calculates m, p factors for APB1
|
|
|
* APB1 rate is calculated as follows
|
|
* APB1 rate is calculated as follows
|
|
@@ -616,6 +655,11 @@ static struct clk_factors_config sun6i_a31_pll6_config = {
|
|
|
.n_start = 1,
|
|
.n_start = 1,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+static struct clk_factors_config sun5i_a13_ahb_config = {
|
|
|
|
|
+ .pshift = 4,
|
|
|
|
|
+ .pwidth = 2,
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
static struct clk_factors_config sun4i_apb1_config = {
|
|
static struct clk_factors_config sun4i_apb1_config = {
|
|
|
.mshift = 0,
|
|
.mshift = 0,
|
|
|
.mwidth = 5,
|
|
.mwidth = 5,
|
|
@@ -676,6 +720,13 @@ static const struct factors_data sun6i_a31_pll6_data __initconst = {
|
|
|
.name = "pll6x2",
|
|
.name = "pll6x2",
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+static const struct factors_data sun5i_a13_ahb_data __initconst = {
|
|
|
|
|
+ .mux = 6,
|
|
|
|
|
+ .muxmask = BIT(1) | BIT(0),
|
|
|
|
|
+ .table = &sun5i_a13_ahb_config,
|
|
|
|
|
+ .getter = sun5i_a13_get_ahb_factors,
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
static const struct factors_data sun4i_apb1_data __initconst = {
|
|
static const struct factors_data sun4i_apb1_data __initconst = {
|
|
|
.mux = 24,
|
|
.mux = 24,
|
|
|
.muxmask = BIT(1) | BIT(0),
|
|
.muxmask = BIT(1) | BIT(0),
|
|
@@ -837,59 +888,6 @@ static void __init sunxi_divider_clk_setup(struct device_node *node,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-/**
|
|
|
|
|
- * sunxi_gates_reset... - reset bits in leaf gate clk registers handling
|
|
|
|
|
- */
|
|
|
|
|
-
|
|
|
|
|
-struct gates_reset_data {
|
|
|
|
|
- void __iomem *reg;
|
|
|
|
|
- spinlock_t *lock;
|
|
|
|
|
- struct reset_controller_dev rcdev;
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-static int sunxi_gates_reset_assert(struct reset_controller_dev *rcdev,
|
|
|
|
|
- unsigned long id)
|
|
|
|
|
-{
|
|
|
|
|
- struct gates_reset_data *data = container_of(rcdev,
|
|
|
|
|
- struct gates_reset_data,
|
|
|
|
|
- rcdev);
|
|
|
|
|
- unsigned long flags;
|
|
|
|
|
- u32 reg;
|
|
|
|
|
-
|
|
|
|
|
- spin_lock_irqsave(data->lock, flags);
|
|
|
|
|
-
|
|
|
|
|
- reg = readl(data->reg);
|
|
|
|
|
- writel(reg & ~BIT(id), data->reg);
|
|
|
|
|
-
|
|
|
|
|
- spin_unlock_irqrestore(data->lock, flags);
|
|
|
|
|
-
|
|
|
|
|
- return 0;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-static int sunxi_gates_reset_deassert(struct reset_controller_dev *rcdev,
|
|
|
|
|
- unsigned long id)
|
|
|
|
|
-{
|
|
|
|
|
- struct gates_reset_data *data = container_of(rcdev,
|
|
|
|
|
- struct gates_reset_data,
|
|
|
|
|
- rcdev);
|
|
|
|
|
- unsigned long flags;
|
|
|
|
|
- u32 reg;
|
|
|
|
|
-
|
|
|
|
|
- spin_lock_irqsave(data->lock, flags);
|
|
|
|
|
-
|
|
|
|
|
- reg = readl(data->reg);
|
|
|
|
|
- writel(reg | BIT(id), data->reg);
|
|
|
|
|
-
|
|
|
|
|
- spin_unlock_irqrestore(data->lock, flags);
|
|
|
|
|
-
|
|
|
|
|
- return 0;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-static struct reset_control_ops sunxi_gates_reset_ops = {
|
|
|
|
|
- .assert = sunxi_gates_reset_assert,
|
|
|
|
|
- .deassert = sunxi_gates_reset_deassert,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* sunxi_gates_clk_setup() - Setup function for leaf gates on clocks
|
|
* sunxi_gates_clk_setup() - Setup function for leaf gates on clocks
|
|
|
*/
|
|
*/
|
|
@@ -898,7 +896,6 @@ static struct reset_control_ops sunxi_gates_reset_ops = {
|
|
|
|
|
|
|
|
struct gates_data {
|
|
struct gates_data {
|
|
|
DECLARE_BITMAP(mask, SUNXI_GATES_MAX_SIZE);
|
|
DECLARE_BITMAP(mask, SUNXI_GATES_MAX_SIZE);
|
|
|
- u32 reset_mask;
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static const struct gates_data sun4i_axi_gates_data __initconst = {
|
|
static const struct gates_data sun4i_axi_gates_data __initconst = {
|
|
@@ -997,26 +994,10 @@ static const struct gates_data sun8i_a23_apb2_gates_data __initconst = {
|
|
|
.mask = {0x1F0007},
|
|
.mask = {0x1F0007},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-static const struct gates_data sun4i_a10_usb_gates_data __initconst = {
|
|
|
|
|
- .mask = {0x1C0},
|
|
|
|
|
- .reset_mask = 0x07,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-static const struct gates_data sun5i_a13_usb_gates_data __initconst = {
|
|
|
|
|
- .mask = {0x140},
|
|
|
|
|
- .reset_mask = 0x03,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-static const struct gates_data sun6i_a31_usb_gates_data __initconst = {
|
|
|
|
|
- .mask = { BIT(18) | BIT(17) | BIT(16) | BIT(10) | BIT(9) | BIT(8) },
|
|
|
|
|
- .reset_mask = BIT(2) | BIT(1) | BIT(0),
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
static void __init sunxi_gates_clk_setup(struct device_node *node,
|
|
static void __init sunxi_gates_clk_setup(struct device_node *node,
|
|
|
struct gates_data *data)
|
|
struct gates_data *data)
|
|
|
{
|
|
{
|
|
|
struct clk_onecell_data *clk_data;
|
|
struct clk_onecell_data *clk_data;
|
|
|
- struct gates_reset_data *reset_data;
|
|
|
|
|
const char *clk_parent;
|
|
const char *clk_parent;
|
|
|
const char *clk_name;
|
|
const char *clk_name;
|
|
|
void __iomem *reg;
|
|
void __iomem *reg;
|
|
@@ -1057,21 +1038,6 @@ static void __init sunxi_gates_clk_setup(struct device_node *node,
|
|
|
clk_data->clk_num = i;
|
|
clk_data->clk_num = i;
|
|
|
|
|
|
|
|
of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
|
|
of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
|
|
|
-
|
|
|
|
|
- /* Register a reset controler for gates with reset bits */
|
|
|
|
|
- if (data->reset_mask == 0)
|
|
|
|
|
- return;
|
|
|
|
|
-
|
|
|
|
|
- reset_data = kzalloc(sizeof(*reset_data), GFP_KERNEL);
|
|
|
|
|
- if (!reset_data)
|
|
|
|
|
- return;
|
|
|
|
|
-
|
|
|
|
|
- reset_data->reg = reg;
|
|
|
|
|
- reset_data->lock = &clk_lock;
|
|
|
|
|
- reset_data->rcdev.nr_resets = __fls(data->reset_mask) + 1;
|
|
|
|
|
- reset_data->rcdev.ops = &sunxi_gates_reset_ops;
|
|
|
|
|
- reset_data->rcdev.of_node = node;
|
|
|
|
|
- reset_controller_register(&reset_data->rcdev);
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1080,13 +1046,20 @@ static void __init sunxi_gates_clk_setup(struct device_node *node,
|
|
|
* sunxi_divs_clk_setup() helper data
|
|
* sunxi_divs_clk_setup() helper data
|
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
-#define SUNXI_DIVS_MAX_QTY 2
|
|
|
|
|
|
|
+#define SUNXI_DIVS_MAX_QTY 4
|
|
|
#define SUNXI_DIVISOR_WIDTH 2
|
|
#define SUNXI_DIVISOR_WIDTH 2
|
|
|
|
|
|
|
|
struct divs_data {
|
|
struct divs_data {
|
|
|
const struct factors_data *factors; /* data for the factor clock */
|
|
const struct factors_data *factors; /* data for the factor clock */
|
|
|
- int ndivs; /* number of children */
|
|
|
|
|
|
|
+ int ndivs; /* number of outputs */
|
|
|
|
|
+ /*
|
|
|
|
|
+ * List of outputs. Refer to the diagram for sunxi_divs_clk_setup():
|
|
|
|
|
+ * self or base factor clock refers to the output from the pll
|
|
|
|
|
+ * itself. The remaining refer to fixed or configurable divider
|
|
|
|
|
+ * outputs.
|
|
|
|
|
+ */
|
|
|
struct {
|
|
struct {
|
|
|
|
|
+ u8 self; /* is it the base factor clock? (only one) */
|
|
|
u8 fixed; /* is it a fixed divisor? if not... */
|
|
u8 fixed; /* is it a fixed divisor? if not... */
|
|
|
struct clk_div_table *table; /* is it a table based divisor? */
|
|
struct clk_div_table *table; /* is it a table based divisor? */
|
|
|
u8 shift; /* otherwise it's a normal divisor with this shift */
|
|
u8 shift; /* otherwise it's a normal divisor with this shift */
|
|
@@ -1109,23 +1082,27 @@ static const struct divs_data pll5_divs_data __initconst = {
|
|
|
.div = {
|
|
.div = {
|
|
|
{ .shift = 0, .pow = 0, }, /* M, DDR */
|
|
{ .shift = 0, .pow = 0, }, /* M, DDR */
|
|
|
{ .shift = 16, .pow = 1, }, /* P, other */
|
|
{ .shift = 16, .pow = 1, }, /* P, other */
|
|
|
|
|
+ /* No output for the base factor clock */
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static const struct divs_data pll6_divs_data __initconst = {
|
|
static const struct divs_data pll6_divs_data __initconst = {
|
|
|
.factors = &sun4i_pll6_data,
|
|
.factors = &sun4i_pll6_data,
|
|
|
- .ndivs = 2,
|
|
|
|
|
|
|
+ .ndivs = 4,
|
|
|
.div = {
|
|
.div = {
|
|
|
{ .shift = 0, .table = pll6_sata_tbl, .gate = 14 }, /* M, SATA */
|
|
{ .shift = 0, .table = pll6_sata_tbl, .gate = 14 }, /* M, SATA */
|
|
|
{ .fixed = 2 }, /* P, other */
|
|
{ .fixed = 2 }, /* P, other */
|
|
|
|
|
+ { .self = 1 }, /* base factor clock, 2x */
|
|
|
|
|
+ { .fixed = 4 }, /* pll6 / 4, used as ahb input */
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
static const struct divs_data sun6i_a31_pll6_divs_data __initconst = {
|
|
static const struct divs_data sun6i_a31_pll6_divs_data __initconst = {
|
|
|
.factors = &sun6i_a31_pll6_data,
|
|
.factors = &sun6i_a31_pll6_data,
|
|
|
- .ndivs = 1,
|
|
|
|
|
|
|
+ .ndivs = 2,
|
|
|
.div = {
|
|
.div = {
|
|
|
{ .fixed = 2 }, /* normal output */
|
|
{ .fixed = 2 }, /* normal output */
|
|
|
|
|
+ { .self = 1 }, /* base factor clock, 2x */
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -1156,6 +1133,10 @@ static void __init sunxi_divs_clk_setup(struct device_node *node,
|
|
|
int ndivs = SUNXI_DIVS_MAX_QTY, i = 0;
|
|
int ndivs = SUNXI_DIVS_MAX_QTY, i = 0;
|
|
|
int flags, clkflags;
|
|
int flags, clkflags;
|
|
|
|
|
|
|
|
|
|
+ /* if number of children known, use it */
|
|
|
|
|
+ if (data->ndivs)
|
|
|
|
|
+ ndivs = data->ndivs;
|
|
|
|
|
+
|
|
|
/* Set up factor clock that we will be dividing */
|
|
/* Set up factor clock that we will be dividing */
|
|
|
pclk = sunxi_factors_clk_setup(node, data->factors);
|
|
pclk = sunxi_factors_clk_setup(node, data->factors);
|
|
|
parent = __clk_get_name(pclk);
|
|
parent = __clk_get_name(pclk);
|
|
@@ -1166,7 +1147,7 @@ static void __init sunxi_divs_clk_setup(struct device_node *node,
|
|
|
if (!clk_data)
|
|
if (!clk_data)
|
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
- clks = kzalloc((SUNXI_DIVS_MAX_QTY+1) * sizeof(*clks), GFP_KERNEL);
|
|
|
|
|
|
|
+ clks = kcalloc(ndivs, sizeof(*clks), GFP_KERNEL);
|
|
|
if (!clks)
|
|
if (!clks)
|
|
|
goto free_clkdata;
|
|
goto free_clkdata;
|
|
|
|
|
|
|
@@ -1176,15 +1157,17 @@ static void __init sunxi_divs_clk_setup(struct device_node *node,
|
|
|
* our RAM clock! */
|
|
* our RAM clock! */
|
|
|
clkflags = !strcmp("pll5", parent) ? 0 : CLK_SET_RATE_PARENT;
|
|
clkflags = !strcmp("pll5", parent) ? 0 : CLK_SET_RATE_PARENT;
|
|
|
|
|
|
|
|
- /* if number of children known, use it */
|
|
|
|
|
- if (data->ndivs)
|
|
|
|
|
- ndivs = data->ndivs;
|
|
|
|
|
-
|
|
|
|
|
for (i = 0; i < ndivs; i++) {
|
|
for (i = 0; i < ndivs; i++) {
|
|
|
if (of_property_read_string_index(node, "clock-output-names",
|
|
if (of_property_read_string_index(node, "clock-output-names",
|
|
|
i, &clk_name) != 0)
|
|
i, &clk_name) != 0)
|
|
|
break;
|
|
break;
|
|
|
|
|
|
|
|
|
|
+ /* If this is the base factor clock, only update clks */
|
|
|
|
|
+ if (data->div[i].self) {
|
|
|
|
|
+ clk_data->clks[i] = pclk;
|
|
|
|
|
+ continue;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
gate_hw = NULL;
|
|
gate_hw = NULL;
|
|
|
rate_hw = NULL;
|
|
rate_hw = NULL;
|
|
|
rate_ops = NULL;
|
|
rate_ops = NULL;
|
|
@@ -1243,9 +1226,6 @@ static void __init sunxi_divs_clk_setup(struct device_node *node,
|
|
|
clk_register_clkdev(clks[i], clk_name, NULL);
|
|
clk_register_clkdev(clks[i], clk_name, NULL);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /* The last clock available on the getter is the parent */
|
|
|
|
|
- clks[i++] = pclk;
|
|
|
|
|
-
|
|
|
|
|
/* Adjust to the real max */
|
|
/* Adjust to the real max */
|
|
|
clk_data->clk_num = i;
|
|
clk_data->clk_num = i;
|
|
|
|
|
|
|
@@ -1269,6 +1249,7 @@ static const struct of_device_id clk_factors_match[] __initconst = {
|
|
|
{.compatible = "allwinner,sun6i-a31-pll1-clk", .data = &sun6i_a31_pll1_data,},
|
|
{.compatible = "allwinner,sun6i-a31-pll1-clk", .data = &sun6i_a31_pll1_data,},
|
|
|
{.compatible = "allwinner,sun8i-a23-pll1-clk", .data = &sun8i_a23_pll1_data,},
|
|
{.compatible = "allwinner,sun8i-a23-pll1-clk", .data = &sun8i_a23_pll1_data,},
|
|
|
{.compatible = "allwinner,sun7i-a20-pll4-clk", .data = &sun7i_a20_pll4_data,},
|
|
{.compatible = "allwinner,sun7i-a20-pll4-clk", .data = &sun7i_a20_pll4_data,},
|
|
|
|
|
+ {.compatible = "allwinner,sun5i-a13-ahb-clk", .data = &sun5i_a13_ahb_data,},
|
|
|
{.compatible = "allwinner,sun4i-a10-apb1-clk", .data = &sun4i_apb1_data,},
|
|
{.compatible = "allwinner,sun4i-a10-apb1-clk", .data = &sun4i_apb1_data,},
|
|
|
{.compatible = "allwinner,sun7i-a20-out-clk", .data = &sun7i_a20_out_data,},
|
|
{.compatible = "allwinner,sun7i-a20-out-clk", .data = &sun7i_a20_out_data,},
|
|
|
{}
|
|
{}
|
|
@@ -1324,9 +1305,6 @@ static const struct of_device_id clk_gates_match[] __initconst = {
|
|
|
{.compatible = "allwinner,sun9i-a80-apb1-gates-clk", .data = &sun9i_a80_apb1_gates_data,},
|
|
{.compatible = "allwinner,sun9i-a80-apb1-gates-clk", .data = &sun9i_a80_apb1_gates_data,},
|
|
|
{.compatible = "allwinner,sun6i-a31-apb2-gates-clk", .data = &sun6i_a31_apb2_gates_data,},
|
|
{.compatible = "allwinner,sun6i-a31-apb2-gates-clk", .data = &sun6i_a31_apb2_gates_data,},
|
|
|
{.compatible = "allwinner,sun8i-a23-apb2-gates-clk", .data = &sun8i_a23_apb2_gates_data,},
|
|
{.compatible = "allwinner,sun8i-a23-apb2-gates-clk", .data = &sun8i_a23_apb2_gates_data,},
|
|
|
- {.compatible = "allwinner,sun4i-a10-usb-clk", .data = &sun4i_a10_usb_gates_data,},
|
|
|
|
|
- {.compatible = "allwinner,sun5i-a13-usb-clk", .data = &sun5i_a13_usb_gates_data,},
|
|
|
|
|
- {.compatible = "allwinner,sun6i-a31-usb-clk", .data = &sun6i_a31_usb_gates_data,},
|
|
|
|
|
{}
|
|
{}
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -1348,15 +1326,15 @@ static void __init sunxi_init_clocks(const char *clocks[], int nclocks)
|
|
|
{
|
|
{
|
|
|
unsigned int i;
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
+ /* Register divided output clocks */
|
|
|
|
|
+ of_sunxi_table_clock_setup(clk_divs_match, sunxi_divs_clk_setup);
|
|
|
|
|
+
|
|
|
/* Register factor clocks */
|
|
/* Register factor clocks */
|
|
|
of_sunxi_table_clock_setup(clk_factors_match, sunxi_factors_clk_setup);
|
|
of_sunxi_table_clock_setup(clk_factors_match, sunxi_factors_clk_setup);
|
|
|
|
|
|
|
|
/* Register divider clocks */
|
|
/* Register divider clocks */
|
|
|
of_sunxi_table_clock_setup(clk_div_match, sunxi_divider_clk_setup);
|
|
of_sunxi_table_clock_setup(clk_div_match, sunxi_divider_clk_setup);
|
|
|
|
|
|
|
|
- /* Register divided output clocks */
|
|
|
|
|
- of_sunxi_table_clock_setup(clk_divs_match, sunxi_divs_clk_setup);
|
|
|
|
|
-
|
|
|
|
|
/* Register mux clocks */
|
|
/* Register mux clocks */
|
|
|
of_sunxi_table_clock_setup(clk_mux_match, sunxi_mux_clk_setup);
|
|
of_sunxi_table_clock_setup(clk_mux_match, sunxi_mux_clk_setup);
|
|
|
|
|
|
|
@@ -1385,6 +1363,7 @@ static void __init sun4i_a10_init_clocks(struct device_node *node)
|
|
|
CLK_OF_DECLARE(sun4i_a10_clk_init, "allwinner,sun4i-a10", sun4i_a10_init_clocks);
|
|
CLK_OF_DECLARE(sun4i_a10_clk_init, "allwinner,sun4i-a10", sun4i_a10_init_clocks);
|
|
|
|
|
|
|
|
static const char *sun5i_critical_clocks[] __initdata = {
|
|
static const char *sun5i_critical_clocks[] __initdata = {
|
|
|
|
|
+ "cpu",
|
|
|
"pll5_ddr",
|
|
"pll5_ddr",
|
|
|
"ahb_sdram",
|
|
"ahb_sdram",
|
|
|
};
|
|
};
|