Masahiro Yamada | b3b1bb7 | 2017-02-17 16:17:22 +0900 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2017 Socionext Inc. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #include <linux/io.h> | ||||
8 | |||||
9 | #include "../init.h" | ||||
10 | |||||
11 | #define SDCTRL_EMMC_HW_RESET 0x59810280 | ||||
12 | |||||
13 | void uniphier_ld20_clk_init(void) | ||||
14 | { | ||||
15 | /* TODO: use "mmc-pwrseq-emmc" */ | ||||
16 | writel(1, SDCTRL_EMMC_HW_RESET); | ||||
17 | } |