Skip to content

Commit 697b4f1

Browse files
committed
Merge branch 'omap-for-v5.6/fixes-rc3' into fixes
2 parents e500ba0 + 51c22d7 commit 697b4f1

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

arch/arm/boot/dts/dra7.dtsi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@
184184
device_type = "pci";
185185
ranges = <0x81000000 0 0 0x03000 0 0x00010000
186186
0x82000000 0 0x20013000 0x13000 0 0xffed000>;
187+
dma-ranges = <0x02000000 0x0 0x00000000 0x00000000 0x1 0x00000000>;
187188
bus-range = <0x00 0xff>;
188189
#interrupt-cells = <1>;
189190
num-lanes = <1>;
@@ -238,6 +239,7 @@
238239
device_type = "pci";
239240
ranges = <0x81000000 0 0 0x03000 0 0x00010000
240241
0x82000000 0 0x30013000 0x13000 0 0xffed000>;
242+
dma-ranges = <0x02000000 0x0 0x00000000 0x00000000 0x1 0x00000000>;
241243
bus-range = <0x00 0xff>;
242244
#interrupt-cells = <1>;
243245
num-lanes = <1>;

arch/arm/boot/dts/dra76x.dtsi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,8 @@
128128
&usb4_tm {
129129
status = "disabled";
130130
};
131+
132+
&mmc3 {
133+
/* dra76x is not affected by i887 */
134+
max-frequency = <96000000>;
135+
};

arch/arm/mach-omap2/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hwmod-common = omap_hwmod.o omap_hwmod_reset.o \
1616
clock-common = clock.o
1717
secure-common = omap-smc.o omap-secure.o
1818

19-
obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common) $(secure-common)
19+
obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common)
2020
obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(hwmod-common) $(secure-common)
2121
obj-$(CONFIG_ARCH_OMAP4) += $(hwmod-common) $(secure-common)
2222
obj-$(CONFIG_SOC_AM33XX) += $(hwmod-common) $(secure-common)

arch/arm/mach-omap2/io.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,6 @@ void __init omap2420_init_early(void)
431431
omap_hwmod_init_postsetup();
432432
omap_clk_soc_init = omap2420_dt_clk_init;
433433
rate_table = omap2420_rate_table;
434-
omap_secure_init();
435434
}
436435

437436
void __init omap2420_init_late(void)
@@ -456,7 +455,6 @@ void __init omap2430_init_early(void)
456455
omap_hwmod_init_postsetup();
457456
omap_clk_soc_init = omap2430_dt_clk_init;
458457
rate_table = omap2430_rate_table;
459-
omap_secure_init();
460458
}
461459

462460
void __init omap2430_init_late(void)

drivers/bus/ti-sysc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ static void sysc_init_revision_quirks(struct sysc *ddata)
14001400
}
14011401

14021402
/* 1-wire needs module's internal clocks enabled for reset */
1403-
static void sysc_clk_enable_quirk_hdq1w(struct sysc *ddata)
1403+
static void sysc_pre_reset_quirk_hdq1w(struct sysc *ddata)
14041404
{
14051405
int offset = 0x0c; /* HDQ_CTRL_STATUS */
14061406
u16 val;
@@ -1488,7 +1488,7 @@ static void sysc_init_module_quirks(struct sysc *ddata)
14881488
return;
14891489

14901490
if (ddata->cfg.quirks & SYSC_MODULE_QUIRK_HDQ1W) {
1491-
ddata->clk_enable_quirk = sysc_clk_enable_quirk_hdq1w;
1491+
ddata->clk_disable_quirk = sysc_pre_reset_quirk_hdq1w;
14921492

14931493
return;
14941494
}

0 commit comments

Comments
 (0)