xref: /OK3568_Linux_fs/u-boot/arch/arm/mach-uniphier/clk/clk-pxs3.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (C) 2017 Socionext Inc.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
5*4882a593Smuzhiyun  */
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun #include <linux/io.h>
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #include "../init.h"
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun #define SDCTRL_EMMC_HW_RESET	0x59810280
12*4882a593Smuzhiyun 
uniphier_pxs3_clk_init(void)13*4882a593Smuzhiyun void uniphier_pxs3_clk_init(void)
14*4882a593Smuzhiyun {
15*4882a593Smuzhiyun 	/* TODO: use "mmc-pwrseq-emmc" */
16*4882a593Smuzhiyun 	writel(1, SDCTRL_EMMC_HW_RESET);
17*4882a593Smuzhiyun }
18