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
836ca008
Commit
836ca008
authored
May 06, 2020
by
Thierry Reding
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-5.8/firmware' into for-5.8/arm/core
parents
8f3d9f35
b720aaa3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
8 deletions
+23
-8
drivers/firmware/tegra/bpmp.c
drivers/firmware/tegra/bpmp.c
+3
-6
drivers/firmware/trusted_foundations.c
drivers/firmware/trusted_foundations.c
+19
-2
include/linux/firmware/trusted_foundations.h
include/linux/firmware/trusted_foundations.h
+1
-0
No files found.
drivers/firmware/tegra/bpmp.c
View file @
836ca008
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
#include <linux/clk/tegra.h>
#include <linux/clk/tegra.h>
#include <linux/genalloc.h>
#include <linux/genalloc.h>
#include <linux/mailbox_client.h>
#include <linux/mailbox_client.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_address.h>
#include <linux/of_device.h>
#include <linux/of_device.h>
...
@@ -869,12 +870,8 @@ static struct platform_driver tegra_bpmp_driver = {
...
@@ -869,12 +870,8 @@ static struct platform_driver tegra_bpmp_driver = {
.
name
=
"tegra-bpmp"
,
.
name
=
"tegra-bpmp"
,
.
of_match_table
=
tegra_bpmp_match
,
.
of_match_table
=
tegra_bpmp_match
,
.
pm
=
&
tegra_bpmp_pm_ops
,
.
pm
=
&
tegra_bpmp_pm_ops
,
.
suppress_bind_attrs
=
true
,
},
},
.
probe
=
tegra_bpmp_probe
,
.
probe
=
tegra_bpmp_probe
,
};
};
builtin_platform_driver
(
tegra_bpmp_driver
);
static
int
__init
tegra_bpmp_init
(
void
)
{
return
platform_driver_register
(
&
tegra_bpmp_driver
);
}
core_initcall
(
tegra_bpmp_init
);
drivers/firmware/trusted_foundations.c
View file @
836ca008
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#define TF_CACHE_ENABLE 1
#define TF_CACHE_ENABLE 1
#define TF_CACHE_DISABLE 2
#define TF_CACHE_DISABLE 2
#define TF_CACHE_REENABLE 4
#define TF_SET_CPU_BOOT_ADDR_SMC 0xfffff200
#define TF_SET_CPU_BOOT_ADDR_SMC 0xfffff200
...
@@ -29,6 +30,7 @@
...
@@ -29,6 +30,7 @@
#define TF_CPU_PM_S1 0xffffffe4
#define TF_CPU_PM_S1 0xffffffe4
#define TF_CPU_PM_S1_NOFLUSH_L2 0xffffffe7
#define TF_CPU_PM_S1_NOFLUSH_L2 0xffffffe7
static
unsigned
long
tf_idle_mode
=
TF_PM_MODE_NONE
;
static
unsigned
long
cpu_boot_addr
;
static
unsigned
long
cpu_boot_addr
;
static
void
tf_generic_smc
(
u32
type
,
u32
arg1
,
u32
arg2
)
static
void
tf_generic_smc
(
u32
type
,
u32
arg1
,
u32
arg2
)
...
@@ -85,25 +87,40 @@ static int tf_prepare_idle(unsigned long mode)
...
@@ -85,25 +87,40 @@ static int tf_prepare_idle(unsigned long mode)
cpu_boot_addr
);
cpu_boot_addr
);
break
;
break
;
case
TF_PM_MODE_NONE
:
break
;
default:
default:
return
-
EINVAL
;
return
-
EINVAL
;
}
}
tf_idle_mode
=
mode
;
return
0
;
return
0
;
}
}
#ifdef CONFIG_CACHE_L2X0
#ifdef CONFIG_CACHE_L2X0
static
void
tf_cache_write_sec
(
unsigned
long
val
,
unsigned
int
reg
)
static
void
tf_cache_write_sec
(
unsigned
long
val
,
unsigned
int
reg
)
{
{
u32
l2x0_way_mask
=
0xff
;
u32
enable_op
,
l2x0_way_mask
=
0xff
;
switch
(
reg
)
{
switch
(
reg
)
{
case
L2X0_CTRL
:
case
L2X0_CTRL
:
if
(
l2x0_saved_regs
.
aux_ctrl
&
L310_AUX_CTRL_ASSOCIATIVITY_16
)
if
(
l2x0_saved_regs
.
aux_ctrl
&
L310_AUX_CTRL_ASSOCIATIVITY_16
)
l2x0_way_mask
=
0xffff
;
l2x0_way_mask
=
0xffff
;
switch
(
tf_idle_mode
)
{
case
TF_PM_MODE_LP2
:
enable_op
=
TF_CACHE_REENABLE
;
break
;
default:
enable_op
=
TF_CACHE_ENABLE
;
break
;
}
if
(
val
==
L2X0_CTRL_EN
)
if
(
val
==
L2X0_CTRL_EN
)
tf_generic_smc
(
TF_CACHE_MAINT
,
TF_CACHE_ENABLE
,
tf_generic_smc
(
TF_CACHE_MAINT
,
enable_op
,
l2x0_saved_regs
.
aux_ctrl
);
l2x0_saved_regs
.
aux_ctrl
);
else
else
tf_generic_smc
(
TF_CACHE_MAINT
,
TF_CACHE_DISABLE
,
tf_generic_smc
(
TF_CACHE_MAINT
,
TF_CACHE_DISABLE
,
...
...
include/linux/firmware/trusted_foundations.h
View file @
836ca008
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#define TF_PM_MODE_LP1_NO_MC_CLK 2
#define TF_PM_MODE_LP1_NO_MC_CLK 2
#define TF_PM_MODE_LP2 3
#define TF_PM_MODE_LP2 3
#define TF_PM_MODE_LP2_NOFLUSH_L2 4
#define TF_PM_MODE_LP2_NOFLUSH_L2 4
#define TF_PM_MODE_NONE 5
struct
trusted_foundations_platform_data
{
struct
trusted_foundations_platform_data
{
unsigned
int
version_major
;
unsigned
int
version_major
;
...
...
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