mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
clock: Lock clock to always enabled for SE in T210B01
This commit is contained in:
parent
7acad84932
commit
a36fec5696
1 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <soc/clock.h>
|
#include <soc/clock.h>
|
||||||
|
#include <soc/hw_init.h>
|
||||||
#include <soc/t210.h>
|
#include <soc/t210.h>
|
||||||
#include <storage/sdmmc.h>
|
#include <storage/sdmmc.h>
|
||||||
#include <utils/util.h>
|
#include <utils/util.h>
|
||||||
|
@ -154,6 +155,10 @@ void clock_disable_i2c(u32 idx)
|
||||||
void clock_enable_se()
|
void clock_enable_se()
|
||||||
{
|
{
|
||||||
clock_enable(&_clock_se);
|
clock_enable(&_clock_se);
|
||||||
|
|
||||||
|
// Lock clock to always enabled if T210B01.
|
||||||
|
if (hw_get_chip_id() == GP_HIDREV_MAJOR_T210B01)
|
||||||
|
CLOCK(CLK_RST_CONTROLLER_CLK_SOURCE_SE) |= 0x100;
|
||||||
}
|
}
|
||||||
|
|
||||||
void clock_enable_tzram()
|
void clock_enable_tzram()
|
||||||
|
|
Loading…
Reference in a new issue