Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52a3a4d4 authored by Paul Walmsley's avatar Paul Walmsley
Browse files

ARM: OMAP4460: Clock: Adding support for 4460 specific clocks



OMAP4460 specific clocks are not getting added as the
cpu_is_omap44xx is choosing only OMAP4430 specific clock nodes.
Changing it to add to OMAP4460 specific clocks also.
This is clocks are required of temperature sensor.

Signed-off-by: default avatarVishwanath BS <vishwanath.bs@ti.com>
Signed-off-by: default avatarKeerthy <j-keerthy@ti.com>
Cc: paul@pwsan.com
[paul@pwsan.com: updated to apply]
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
parent 49642ac8
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -1398,9 +1398,9 @@ static struct clk dss_dss_clk = {
};

static const struct clksel_rate div3_8to32_rates[] = {
	{ .div = 8, .val = 0, .flags = RATE_IN_44XX },
	{ .div = 16, .val = 1, .flags = RATE_IN_44XX },
	{ .div = 32, .val = 2, .flags = RATE_IN_44XX },
	{ .div = 8, .val = 0, .flags = RATE_IN_4460 },
	{ .div = 16, .val = 1, .flags = RATE_IN_4460 },
	{ .div = 32, .val = 2, .flags = RATE_IN_4460 },
	{ .div = 0 },
};

@@ -3370,12 +3370,12 @@ int __init omap4xxx_clk_init(void)
	struct omap_clk *c;
	u32 cpu_clkflg;

	if (cpu_is_omap44xx()) {
	if (cpu_is_omap443x()) {
		cpu_mask = RATE_IN_4430;
		cpu_clkflg = CK_443X;
	} else if (cpu_is_omap446x()) {
		cpu_mask = RATE_IN_4460;
		cpu_clkflg = CK_446X;
		cpu_mask = RATE_IN_4460 | RATE_IN_4430;
		cpu_clkflg = CK_446X | CK_443X;
	} else {
		return 0;
	}