Path: blob/master/arch/unicore32/include/mach/regs-pm.h
10819 views
/*1* PKUNITY Power Manager (PM) Registers2*/3/*4* PM Control Reg PM_PMCR5*/6#define PM_PMCR (PKUNITY_PM_BASE + 0x0000)7/*8* PM General Conf. Reg PM_PGCR9*/10#define PM_PGCR (PKUNITY_PM_BASE + 0x0004)11/*12* PM PLL Conf. Reg PM_PPCR13*/14#define PM_PPCR (PKUNITY_PM_BASE + 0x0008)15/*16* PM Wakeup Enable Reg PM_PWER17*/18#define PM_PWER (PKUNITY_PM_BASE + 0x000C)19/*20* PM GPIO Sleep Status Reg PM_PGSR21*/22#define PM_PGSR (PKUNITY_PM_BASE + 0x0010)23/*24* PM Clock Gate Reg PM_PCGR25*/26#define PM_PCGR (PKUNITY_PM_BASE + 0x0014)27/*28* PM SYS PLL Conf. Reg PM_PLLSYSCFG29*/30#define PM_PLLSYSCFG (PKUNITY_PM_BASE + 0x0018)31/*32* PM DDR PLL Conf. Reg PM_PLLDDRCFG33*/34#define PM_PLLDDRCFG (PKUNITY_PM_BASE + 0x001C)35/*36* PM VGA PLL Conf. Reg PM_PLLVGACFG37*/38#define PM_PLLVGACFG (PKUNITY_PM_BASE + 0x0020)39/*40* PM Div Conf. Reg PM_DIVCFG41*/42#define PM_DIVCFG (PKUNITY_PM_BASE + 0x0024)43/*44* PM SYS PLL Status Reg PM_PLLSYSSTATUS45*/46#define PM_PLLSYSSTATUS (PKUNITY_PM_BASE + 0x0028)47/*48* PM DDR PLL Status Reg PM_PLLDDRSTATUS49*/50#define PM_PLLDDRSTATUS (PKUNITY_PM_BASE + 0x002C)51/*52* PM VGA PLL Status Reg PM_PLLVGASTATUS53*/54#define PM_PLLVGASTATUS (PKUNITY_PM_BASE + 0x0030)55/*56* PM Div Status Reg PM_DIVSTATUS57*/58#define PM_DIVSTATUS (PKUNITY_PM_BASE + 0x0034)59/*60* PM Software Reset Reg PM_SWRESET61*/62#define PM_SWRESET (PKUNITY_PM_BASE + 0x0038)63/*64* PM DDR2 PAD Start Reg PM_DDR2START65*/66#define PM_DDR2START (PKUNITY_PM_BASE + 0x003C)67/*68* PM DDR2 PAD Status Reg PM_DDR2CAL069*/70#define PM_DDR2CAL0 (PKUNITY_PM_BASE + 0x0040)71/*72* PM PLL DFC Done Reg PM_PLLDFCDONE73*/74#define PM_PLLDFCDONE (PKUNITY_PM_BASE + 0x0044)7576#define PM_PMCR_SFB FIELD(1, 1, 0)77#define PM_PMCR_IFB FIELD(1, 1, 1)78#define PM_PMCR_CFBSYS FIELD(1, 1, 2)79#define PM_PMCR_CFBDDR FIELD(1, 1, 3)80#define PM_PMCR_CFBVGA FIELD(1, 1, 4)81#define PM_PMCR_CFBDIVBCLK FIELD(1, 1, 5)8283/*84* GPIO 8~27 wake-up enable PM_PWER_GPIOHIGH85*/86#define PM_PWER_GPIOHIGH FIELD(1, 1, 8)87/*88* RTC alarm wake-up enable PM_PWER_RTC89*/90#define PM_PWER_RTC FIELD(1, 1, 31)9192#define PM_PCGR_BCLK64DDR FIELD(1, 1, 0)93#define PM_PCGR_BCLK64VGA FIELD(1, 1, 1)94#define PM_PCGR_BCLKDDR FIELD(1, 1, 2)95#define PM_PCGR_BCLKPCI FIELD(1, 1, 4)96#define PM_PCGR_BCLKDMAC FIELD(1, 1, 5)97#define PM_PCGR_BCLKUMAL FIELD(1, 1, 6)98#define PM_PCGR_BCLKUSB FIELD(1, 1, 7)99#define PM_PCGR_BCLKMME FIELD(1, 1, 10)100#define PM_PCGR_BCLKNAND FIELD(1, 1, 11)101#define PM_PCGR_BCLKH264E FIELD(1, 1, 12)102#define PM_PCGR_BCLKVGA FIELD(1, 1, 13)103#define PM_PCGR_BCLKH264D FIELD(1, 1, 14)104#define PM_PCGR_VECLK FIELD(1, 1, 15)105#define PM_PCGR_HECLK FIELD(1, 1, 16)106#define PM_PCGR_HDCLK FIELD(1, 1, 17)107#define PM_PCGR_NANDCLK FIELD(1, 1, 18)108#define PM_PCGR_GECLK FIELD(1, 1, 19)109#define PM_PCGR_VGACLK FIELD(1, 1, 20)110#define PM_PCGR_PCICLK FIELD(1, 1, 21)111#define PM_PCGR_SATACLK FIELD(1, 1, 25)112113/*114* [23:20]PM_DIVCFG_VGACLK(v)115*/116#define PM_DIVCFG_VGACLK_MASK FMASK(4, 20)117#define PM_DIVCFG_VGACLK(v) FIELD((v), 4, 20)118119#define PM_SWRESET_USB FIELD(1, 1, 6)120#define PM_SWRESET_VGADIV FIELD(1, 1, 26)121#define PM_SWRESET_GEDIV FIELD(1, 1, 27)122123#define PM_PLLDFCDONE_SYSDFC FIELD(1, 1, 0)124#define PM_PLLDFCDONE_DDRDFC FIELD(1, 1, 1)125#define PM_PLLDFCDONE_VGADFC FIELD(1, 1, 2)126127128