Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 2 | /* |
| 3 | * board/renesas/draak/draak.c |
| 4 | * This file is Draak board support. |
| 5 | * |
| 6 | * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 10 | #include <hang.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 12 | #include <malloc.h> |
| 13 | #include <netdev.h> |
| 14 | #include <dm.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 16 | #include <dm/platform_data/serial_sh.h> |
| 17 | #include <asm/processor.h> |
| 18 | #include <asm/mach-types.h> |
| 19 | #include <asm/io.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 20 | #include <linux/bitops.h> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 21 | #include <linux/errno.h> |
| 22 | #include <asm/arch/sys_proto.h> |
| 23 | #include <asm/gpio.h> |
| 24 | #include <asm/arch/gpio.h> |
Marek Vasut | 97a070b | 2024-02-27 17:05:54 +0100 | [diff] [blame^] | 25 | #include <asm/arch/renesas.h> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 26 | #include <asm/arch/rcar-mstp.h> |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 27 | #include <i2c.h> |
| 28 | #include <mmc.h> |
| 29 | |
| 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 32 | #define GSX_MSTP112 BIT(12) /* 3DG */ |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 33 | #define SCIF2_MSTP310 BIT(10) /* SCIF2 */ |
| 34 | #define DVFS_MSTP926 BIT(26) |
| 35 | #define HSUSB_MSTP704 BIT(4) /* HSUSB */ |
| 36 | |
| 37 | int board_early_init_f(void) |
| 38 | { |
Tom Rini | 52b2e26 | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 39 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) && defined(CONFIG_SYS_I2C_SH) |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 40 | /* DVFS for reset */ |
Hiroyuki Yokoyama | 7e17291 | 2018-09-26 16:00:09 +0900 | [diff] [blame] | 41 | mstp_clrbits_le32(SMSTPCR9, SMSTPCR9, DVFS_MSTP926); |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 42 | #endif |
| 43 | return 0; |
| 44 | } |
| 45 | |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 46 | /* HSUSB block registers */ |
| 47 | #define HSUSB_REG_LPSTS 0xE6590102 |
| 48 | #define HSUSB_REG_LPSTS_SUSPM_NORMAL BIT(14) |
| 49 | #define HSUSB_REG_UGCTRL2 0xE6590184 |
| 50 | #define HSUSB_REG_UGCTRL2_USB0SEL 0x30 |
| 51 | #define HSUSB_REG_UGCTRL2_USB0SEL_EHCI 0x10 |
| 52 | |
| 53 | int board_init(void) |
| 54 | { |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 55 | /* USB1 pull-up */ |
| 56 | setbits_le32(PFC_PUEN6, PUEN_USB1_OVC | PUEN_USB1_PWEN); |
| 57 | |
| 58 | /* Configure the HSUSB block */ |
Hiroyuki Yokoyama | 7e17291 | 2018-09-26 16:00:09 +0900 | [diff] [blame] | 59 | mstp_clrbits_le32(SMSTPCR7, SMSTPCR7, HSUSB_MSTP704); |
Marek Vasut | 3ef6d08 | 2017-10-08 20:41:18 +0200 | [diff] [blame] | 60 | /* Choice USB0SEL */ |
| 61 | clrsetbits_le32(HSUSB_REG_UGCTRL2, HSUSB_REG_UGCTRL2_USB0SEL, |
| 62 | HSUSB_REG_UGCTRL2_USB0SEL_EHCI); |
| 63 | /* low power status */ |
| 64 | setbits_le16(HSUSB_REG_LPSTS, HSUSB_REG_LPSTS_SUSPM_NORMAL); |
| 65 | |
| 66 | return 0; |
| 67 | } |