Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
715e82cf
Commit
715e82cf
authored
Feb 28, 2017
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'omap-for-v4.10/fixes' into omap-for-v4.11/fixes
parents
c470abd4
448c077e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
arch/arm/mach-omap2/omap-headsmp.S
arch/arm/mach-omap2/omap-headsmp.S
+2
-1
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
+20
-0
No files found.
arch/arm/mach-omap2/omap-headsmp.S
View file @
715e82cf
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
#include <linux/linkage.h>
#include <linux/linkage.h>
#include <linux/init.h>
#include <linux/init.h>
#include <asm/assembler.h>
#include "omap44xx.h"
#include "omap44xx.h"
...
@@ -66,7 +67,7 @@ wait_2: ldr r2, =AUX_CORE_BOOT0_PA @ read from AuxCoreBoot0
...
@@ -66,7 +67,7 @@ wait_2: ldr r2, =AUX_CORE_BOOT0_PA @ read from AuxCoreBoot0
cmp
r0
,
r4
cmp
r0
,
r4
bne
wait_2
bne
wait_2
ldr
r12
,
=
API_HYP_ENTRY
ldr
r12
,
=
API_HYP_ENTRY
adr
r0
,
hyp_boot
b
adr
r0
,
hyp_boot
smc
#
0
smc
#
0
hyp_boot
:
hyp_boot
:
b
omap_secondary_startup
b
omap_secondary_startup
...
...
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
View file @
715e82cf
...
@@ -2112,11 +2112,20 @@ static struct omap_hwmod_ocp_if omap3_l4_core__i2c3 = {
...
@@ -2112,11 +2112,20 @@ static struct omap_hwmod_ocp_if omap3_l4_core__i2c3 = {
};
};
/* L4 CORE -> SR1 interface */
/* L4 CORE -> SR1 interface */
static
struct
omap_hwmod_addr_space
omap3_sr1_addr_space
[]
=
{
{
.
pa_start
=
OMAP34XX_SR1_BASE
,
.
pa_end
=
OMAP34XX_SR1_BASE
+
SZ_1K
-
1
,
.
flags
=
ADDR_TYPE_RT
,
},
{
},
};
static
struct
omap_hwmod_ocp_if
omap34xx_l4_core__sr1
=
{
static
struct
omap_hwmod_ocp_if
omap34xx_l4_core__sr1
=
{
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
slave
=
&
omap34xx_sr1_hwmod
,
.
slave
=
&
omap34xx_sr1_hwmod
,
.
clk
=
"sr_l4_ick"
,
.
clk
=
"sr_l4_ick"
,
.
addr
=
omap3_sr1_addr_space
,
.
user
=
OCP_USER_MPU
,
.
user
=
OCP_USER_MPU
,
};
};
...
@@ -2124,15 +2133,25 @@ static struct omap_hwmod_ocp_if omap36xx_l4_core__sr1 = {
...
@@ -2124,15 +2133,25 @@ static struct omap_hwmod_ocp_if omap36xx_l4_core__sr1 = {
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
slave
=
&
omap36xx_sr1_hwmod
,
.
slave
=
&
omap36xx_sr1_hwmod
,
.
clk
=
"sr_l4_ick"
,
.
clk
=
"sr_l4_ick"
,
.
addr
=
omap3_sr1_addr_space
,
.
user
=
OCP_USER_MPU
,
.
user
=
OCP_USER_MPU
,
};
};
/* L4 CORE -> SR1 interface */
/* L4 CORE -> SR1 interface */
static
struct
omap_hwmod_addr_space
omap3_sr2_addr_space
[]
=
{
{
.
pa_start
=
OMAP34XX_SR2_BASE
,
.
pa_end
=
OMAP34XX_SR2_BASE
+
SZ_1K
-
1
,
.
flags
=
ADDR_TYPE_RT
,
},
{
},
};
static
struct
omap_hwmod_ocp_if
omap34xx_l4_core__sr2
=
{
static
struct
omap_hwmod_ocp_if
omap34xx_l4_core__sr2
=
{
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
slave
=
&
omap34xx_sr2_hwmod
,
.
slave
=
&
omap34xx_sr2_hwmod
,
.
clk
=
"sr_l4_ick"
,
.
clk
=
"sr_l4_ick"
,
.
addr
=
omap3_sr2_addr_space
,
.
user
=
OCP_USER_MPU
,
.
user
=
OCP_USER_MPU
,
};
};
...
@@ -2140,6 +2159,7 @@ static struct omap_hwmod_ocp_if omap36xx_l4_core__sr2 = {
...
@@ -2140,6 +2159,7 @@ static struct omap_hwmod_ocp_if omap36xx_l4_core__sr2 = {
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
master
=
&
omap3xxx_l4_core_hwmod
,
.
slave
=
&
omap36xx_sr2_hwmod
,
.
slave
=
&
omap36xx_sr2_hwmod
,
.
clk
=
"sr_l4_ick"
,
.
clk
=
"sr_l4_ick"
,
.
addr
=
omap3_sr2_addr_space
,
.
user
=
OCP_USER_MPU
,
.
user
=
OCP_USER_MPU
,
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment