mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	This function was intended for MN2WS0235 (what we call PH1-Pro4TV). On that SoC, MPLL is already running on the power-on reset and it makes sense to stop the PLL at early boot-up. On the other hand, PH1-Pro4(R) does not have SC_MPLLOSCCTL register, so this function has no point. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * UniPhier SC (System Control) block registers
 | |
|  *
 | |
|  * Copyright (C) 2011-2015 Panasonic Corporation
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef ARCH_SC_REGS_H
 | |
| #define ARCH_SC_REGS_H
 | |
| 
 | |
| #define SC_BASE_ADDR			0x61840000
 | |
| 
 | |
| #define SC_DPLLCTRL			(SC_BASE_ADDR | 0x1200)
 | |
| #define SC_DPLLCTRL_SSC_EN		(0x1 << 31)
 | |
| #define SC_DPLLCTRL_FOUTMODE_MASK        (0xf << 16)
 | |
| #define SC_DPLLCTRL_SSC_RATE		(0x1 << 15)
 | |
| 
 | |
| #define SC_DPLLCTRL2			(SC_BASE_ADDR | 0x1204)
 | |
| #define SC_DPLLCTRL2_NRSTDS		(0x1 << 28)
 | |
| 
 | |
| #define SC_DPLLCTRL3			(SC_BASE_ADDR | 0x1208)
 | |
| #define SC_DPLLCTRL3_LPFSEL_COEF2	(0x0 << 31)
 | |
| #define SC_DPLLCTRL3_LPFSEL_COEF3	(0x1 << 31)
 | |
| 
 | |
| #define SC_UPLLCTRL			(SC_BASE_ADDR | 0x1210)
 | |
| 
 | |
| #define SC_VPLL27ACTRL			(SC_BASE_ADDR | 0x1270)
 | |
| #define SC_VPLL27ACTRL2			(SC_BASE_ADDR | 0x1274)
 | |
| #define SC_VPLL27ACTRL3			(SC_BASE_ADDR | 0x1278)
 | |
| 
 | |
| #define SC_VPLL27BCTRL			(SC_BASE_ADDR | 0x1290)
 | |
| #define SC_VPLL27BCTRL2			(SC_BASE_ADDR | 0x1294)
 | |
| #define SC_VPLL27BCTRL3			(SC_BASE_ADDR | 0x1298)
 | |
| 
 | |
| #define SC_RSTCTRL			(SC_BASE_ADDR | 0x2000)
 | |
| #define SC_RSTCTRL_NRST_USB3B0		(0x1 << 17)	/* USB3 #0 bus */
 | |
| #define SC_RSTCTRL_NRST_USB3C0		(0x1 << 16)	/* USB3 #0 core */
 | |
| #define SC_RSTCTRL_NRST_ETHER		(0x1 << 12)
 | |
| #define SC_RSTCTRL_NRST_STDMAC		(0x1 << 10)
 | |
| #define SC_RSTCTRL_NRST_GIO		(0x1 <<  6)
 | |
| #define SC_RSTCTRL_NRST_UMC1		(0x1 <<  5)
 | |
| #define SC_RSTCTRL_NRST_UMC0		(0x1 <<  4)
 | |
| #define SC_RSTCTRL_NRST_NAND		(0x1 <<  2)
 | |
| 
 | |
| #define SC_RSTCTRL2			(SC_BASE_ADDR | 0x2004)
 | |
| #define SC_RSTCTRL2_NRST_USB3B1		(0x1 << 17)	/* USB3 #1 bus */
 | |
| #define SC_RSTCTRL2_NRST_USB3C1		(0x1 << 16)	/* USB3 #1 core */
 | |
| 
 | |
| #define SC_RSTCTRL3			(SC_BASE_ADDR | 0x2008)
 | |
| 
 | |
| #define SC_CLKCTRL			(SC_BASE_ADDR | 0x2104)
 | |
| #define SC_CLKCTRL_CEN_USB31		(0x1 << 17)	/* USB3 #1 */
 | |
| #define SC_CLKCTRL_CEN_USB30		(0x1 << 16)	/* USB3 #0 */
 | |
| #define SC_CLKCTRL_CEN_ETHER		(0x1 << 12)
 | |
| #define SC_CLKCTRL_CEN_MIO		(0x1 << 11)
 | |
| #define SC_CLKCTRL_CEN_STDMAC		(0x1 << 10)
 | |
| #define SC_CLKCTRL_CEN_GIO		(0x1 <<  6)
 | |
| #define SC_CLKCTRL_CEN_UMC		(0x1 <<  4)
 | |
| #define SC_CLKCTRL_CEN_NAND		(0x1 <<  2)
 | |
| #define SC_CLKCTRL_CEN_SBC		(0x1 <<  1)
 | |
| #define SC_CLKCTRL_CEN_PERI		(0x1 <<  0)
 | |
| 
 | |
| /* System reset control register */
 | |
| #define SC_IRQTIMSET			(SC_BASE_ADDR | 0x3000)
 | |
| #define SC_SLFRSTSEL			(SC_BASE_ADDR | 0x3010)
 | |
| #define SC_SLFRSTCTL			(SC_BASE_ADDR | 0x3014)
 | |
| 
 | |
| #endif /* ARCH_SC_REGS_H */
 |