Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 2 | /* |
| 3 | * board/renesas/ulcb/ulcb.c |
| 4 | * This file is ULCB board support. |
| 5 | * |
| 6 | * Copyright (C) 2017 Renesas Electronics Corporation |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 9 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 11 | #include <malloc.h> |
| 12 | #include <netdev.h> |
| 13 | #include <dm.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 15 | #include <dm/platform_data/serial_sh.h> |
| 16 | #include <asm/processor.h> |
| 17 | #include <asm/mach-types.h> |
| 18 | #include <asm/io.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 19 | #include <linux/bitops.h> |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <asm/arch/sys_proto.h> |
| 22 | #include <asm/gpio.h> |
| 23 | #include <asm/arch/gpio.h> |
Marek Vasut | 97a070b | 2024-02-27 17:05:54 +0100 | [diff] [blame] | 24 | #include <asm/arch/renesas.h> |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 25 | #include <asm/arch/rcar-mstp.h> |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 26 | #include <i2c.h> |
| 27 | #include <mmc.h> |
| 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 31 | #define DVFS_MSTP926 BIT(26) |
Marek Vasut | cea5c8f | 2017-09-12 19:07:22 +0200 | [diff] [blame] | 32 | #define HSUSB_MSTP704 BIT(4) /* HSUSB */ |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 33 | |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 34 | int board_early_init_f(void) |
| 35 | { |
Tom Rini | 52b2e26 | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 36 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) && defined(CONFIG_SYS_I2C_SH) |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 37 | /* DVFS for reset */ |
Hiroyuki Yokoyama | 7e17291 | 2018-09-26 16:00:09 +0900 | [diff] [blame] | 38 | mstp_clrbits_le32(SMSTPCR9, SMSTPCR9, DVFS_MSTP926); |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 39 | #endif |
| 40 | return 0; |
| 41 | } |
| 42 | |
Marek Vasut | cea5c8f | 2017-09-12 19:07:22 +0200 | [diff] [blame] | 43 | /* HSUSB block registers */ |
| 44 | #define HSUSB_REG_LPSTS 0xE6590102 |
| 45 | #define HSUSB_REG_LPSTS_SUSPM_NORMAL BIT(14) |
| 46 | #define HSUSB_REG_UGCTRL2 0xE6590184 |
| 47 | #define HSUSB_REG_UGCTRL2_USB0SEL 0x30 |
| 48 | #define HSUSB_REG_UGCTRL2_USB0SEL_EHCI 0x10 |
| 49 | |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 50 | int board_init(void) |
| 51 | { |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 52 | /* USB1 pull-up */ |
| 53 | setbits_le32(PFC_PUEN6, PUEN_USB1_OVC | PUEN_USB1_PWEN); |
| 54 | |
Marek Vasut | cea5c8f | 2017-09-12 19:07:22 +0200 | [diff] [blame] | 55 | /* Configure the HSUSB block */ |
Hiroyuki Yokoyama | 7e17291 | 2018-09-26 16:00:09 +0900 | [diff] [blame] | 56 | mstp_clrbits_le32(SMSTPCR7, SMSTPCR7, HSUSB_MSTP704); |
Marek Vasut | cea5c8f | 2017-09-12 19:07:22 +0200 | [diff] [blame] | 57 | /* Choice USB0SEL */ |
| 58 | clrsetbits_le32(HSUSB_REG_UGCTRL2, HSUSB_REG_UGCTRL2_USB0SEL, |
| 59 | HSUSB_REG_UGCTRL2_USB0SEL_EHCI); |
| 60 | /* low power status */ |
| 61 | setbits_le16(HSUSB_REG_LPSTS, HSUSB_REG_LPSTS_SUSPM_NORMAL); |
| 62 | |
Marek Vasut | 7cf1c7f | 2017-08-20 17:13:48 +0200 | [diff] [blame] | 63 | return 0; |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 64 | } |
Marek Vasut | ad43cd3 | 2017-07-21 23:15:21 +0200 | [diff] [blame] | 65 | |
Marek Vasut | 4726f06 | 2018-12-04 01:44:34 +0100 | [diff] [blame] | 66 | #ifdef CONFIG_MULTI_DTB_FIT |
| 67 | int board_fit_config_name_match(const char *name) |
| 68 | { |
| 69 | /* PRR driver is not available yet */ |
Marek Vasut | 30fe98e | 2024-02-27 17:05:45 +0100 | [diff] [blame] | 70 | u32 cpu_type = renesas_get_cpu_type(); |
Marek Vasut | 4726f06 | 2018-12-04 01:44:34 +0100 | [diff] [blame] | 71 | |
Marek Vasut | f972661 | 2024-02-27 17:05:47 +0100 | [diff] [blame] | 72 | if ((cpu_type == RENESAS_CPU_TYPE_R8A7795) && |
Marek Vasut | af66754 | 2024-03-18 15:59:37 +0100 | [diff] [blame] | 73 | !strcmp(name, "r8a77951-ulcb")) |
Marek Vasut | 4726f06 | 2018-12-04 01:44:34 +0100 | [diff] [blame] | 74 | return 0; |
| 75 | |
Marek Vasut | f972661 | 2024-02-27 17:05:47 +0100 | [diff] [blame] | 76 | if ((cpu_type == RENESAS_CPU_TYPE_R8A7796) && |
Marek Vasut | e789aeb | 2024-03-17 07:23:38 +0100 | [diff] [blame] | 77 | !strcmp(name, "r8a77960-ulcb")) |
Marek Vasut | 4726f06 | 2018-12-04 01:44:34 +0100 | [diff] [blame] | 78 | return 0; |
| 79 | |
Marek Vasut | f972661 | 2024-02-27 17:05:47 +0100 | [diff] [blame] | 80 | if ((cpu_type == RENESAS_CPU_TYPE_R8A77965) && |
Marek Vasut | e789aeb | 2024-03-17 07:23:38 +0100 | [diff] [blame] | 81 | !strcmp(name, "r8a77965-ulcb")) |
Marek Vasut | 5d611db | 2019-03-04 12:34:50 +0100 | [diff] [blame] | 82 | return 0; |
| 83 | |
Marek Vasut | 4726f06 | 2018-12-04 01:44:34 +0100 | [diff] [blame] | 84 | return -1; |
| 85 | } |
| 86 | #endif |