Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
3b39efa4
Commit
3b39efa4
authored
Oct 23, 2017
by
davidcunado-arm
Committed by
GitHub
Oct 23, 2017
Browse files
Merge pull request #1139 from hzhuang1/fix_edmac
Fix edmac
parents
4c37ac89
454748fc
Changes
3
Hide whitespace changes
Inline
Side-by-side
plat/hisilicon/hikey/hikey_bl1_setup.c
View file @
3b39efa4
...
@@ -489,6 +489,15 @@ static void hikey_mmc_pll_init(void)
...
@@ -489,6 +489,15 @@ static void hikey_mmc_pll_init(void)
reset_mmc1_clk
();
reset_mmc1_clk
();
}
}
static
void
hikey_rtc_init
(
void
)
{
uint32_t
data
;
data
=
mmio_read_32
(
AO_SC_PERIPH_CLKEN4
);
data
|=
AO_SC_PERIPH_RSTDIS4_RESET_RTC0_N
;
mmio_write_32
(
AO_SC_PERIPH_CLKEN4
,
data
);
}
/*
/*
* Function which will perform any remaining platform-specific setup that can
* Function which will perform any remaining platform-specific setup that can
* occur after the MMU and data cache have been enabled.
* occur after the MMU and data cache have been enabled.
...
@@ -505,6 +514,8 @@ void bl1_platform_setup(void)
...
@@ -505,6 +514,8 @@ void bl1_platform_setup(void)
hikey_pmussi_init
();
hikey_pmussi_init
();
hikey_hi6553_init
();
hikey_hi6553_init
();
hikey_rtc_init
();
hikey_mmc_pll_init
();
hikey_mmc_pll_init
();
memset
(
&
params
,
0
,
sizeof
(
dw_mmc_params_t
));
memset
(
&
params
,
0
,
sizeof
(
dw_mmc_params_t
));
...
...
plat/hisilicon/hikey/hikey_bl31_setup.c
View file @
3b39efa4
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
#include <hi6220.h>
#include <hi6220.h>
#include <hisi_ipc.h>
#include <hisi_ipc.h>
#include <hisi_pwrc.h>
#include <hisi_pwrc.h>
#include <mmio.h>
#include <platform_def.h>
#include <platform_def.h>
#include "hikey_def.h"
#include "hikey_def.h"
...
@@ -152,6 +153,20 @@ void bl31_plat_arch_setup(void)
...
@@ -152,6 +153,20 @@ void bl31_plat_arch_setup(void)
BL31_COHERENT_RAM_LIMIT
);
BL31_COHERENT_RAM_LIMIT
);
}
}
/* Initialize EDMAC controller with non-secure mode. */
static
void
hikey_edma_init
(
void
)
{
int
i
;
uint32_t
non_secure
;
non_secure
=
EDMAC_SEC_CTRL_INTR_SEC
|
EDMAC_SEC_CTRL_GLOBAL_SEC
;
mmio_write_32
(
EDMAC_SEC_CTRL
,
non_secure
);
for
(
i
=
0
;
i
<
EDMAC_CHANNEL_NUMS
;
i
++
)
{
mmio_write_32
(
EDMAC_AXI_CONF
(
i
),
(
1
<<
6
)
|
(
1
<<
18
));
}
}
void
bl31_platform_setup
(
void
)
void
bl31_platform_setup
(
void
)
{
{
/* Initialize the GIC driver, cpu and distributor interfaces */
/* Initialize the GIC driver, cpu and distributor interfaces */
...
@@ -160,6 +175,8 @@ void bl31_platform_setup(void)
...
@@ -160,6 +175,8 @@ void bl31_platform_setup(void)
gicv2_pcpu_distif_init
();
gicv2_pcpu_distif_init
();
gicv2_cpuif_enable
();
gicv2_cpuif_enable
();
hikey_edma_init
();
hisi_ipc_init
();
hisi_ipc_init
();
hisi_pwrc_setup
();
hisi_pwrc_setup
();
}
}
...
...
plat/hisilicon/hikey/include/hi6220.h
View file @
3b39efa4
...
@@ -42,6 +42,13 @@
...
@@ -42,6 +42,13 @@
#define DWUSB_BASE 0xF72C0000
#define DWUSB_BASE 0xF72C0000
#define EDMAC_BASE 0xf7370000
#define EDMAC_SEC_CTRL (EDMAC_BASE + 0x694)
#define EDMAC_AXI_CONF(x) (EDMAC_BASE + 0x820 + (x << 6))
#define EDMAC_SEC_CTRL_INTR_SEC (1 << 1)
#define EDMAC_SEC_CTRL_GLOBAL_SEC (1 << 0)
#define EDMAC_CHANNEL_NUMS 16
#define PMUSSI_BASE 0xF8000000
#define PMUSSI_BASE 0xF8000000
#define SP804_TIMER0_BASE 0xF8008000
#define SP804_TIMER0_BASE 0xF8008000
...
...
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