Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

as3525: add a few more CGU_PERI definitions


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24537 a1c6a512-1295-4272-9138-f99709370657

+5 -4
+3 -2
firmware/export/as3525.h
··· 219 219 220 220 #define CGU_VIC_CLOCK_ENABLE ( 1 << 23 ) /* vic */ 221 221 /* --- are disabled after reset --- */ 222 + #define CGU_EXTMEM_CLOCK_ENABLE ( 1 << 27 ) /* external memory */ 223 + #define CGU_EXTMEMIF_CLOCK_ENABLE ( 1 << 26 ) /* ext mem AHB IF */ 222 224 #define CGU_DMA_CLOCK_ENABLE ( 1 << 22 ) /* dma */ 223 225 #define CGU_USB_CLOCK_ENABLE ( 1 << 21 ) /* usb */ 224 226 #define CGU_I2SOUT_APB_CLOCK_ENABLE ( 1 << 20 ) /* i2sout */ ··· 234 236 #define CGU_SSP_CLOCK_ENABLE ( 1 << 10 ) /* ssp */ 235 237 #define CGU_TIMER1_CLOCK_ENABLE ( 1 << 9 ) /* timer 1 */ 236 238 #define CGU_TIMER2_CLOCK_ENABLE ( 1 << 8 ) /* timer 2 */ 237 - #define CGU_TIMERIF_CLOCK_ENABLE ( 1 << 7 ) /* timer 238 - interface */ 239 + #define CGU_TIMERIF_CLOCK_ENABLE ( 1 << 7 ) /* timer interface */ 239 240 240 241 /** ------------------------------------------------------------------ 241 242 * Number of cycles to wait before cgu is safely locked.
+2 -2
firmware/target/arm/as3525/system-as3525.c
··· 171 171 /* Use the same initialization than OF */ 172 172 static void sdram_init(void) 173 173 { 174 - CGU_PERI |= (1<<26)|(1<<27); /* extmem & extmem intf clocks */ 174 + CGU_PERI |= (CGU_EXTMEM_CLOCK_ENABLE|CGU_EXTMEMIF_CLOCK_ENABLE); 175 175 176 176 MPMC_CONTROL = 0x1; /* enable MPMC */ 177 177 ··· 301 301 (AS3525_FCLK_PREDIV << 2) | 302 302 AS3525_FCLK_SEL); 303 303 /* Set PCLK frequency */ 304 - CGU_PERI = ((CGU_PERI & 0xffffff80) | /* reset divider bits 0:6 */ 304 + CGU_PERI = ((CGU_PERI & ~0x7F) | /* reset divider bits 0:6 */ 305 305 (AS3525_PCLK_DIV0 << 2) | 306 306 (AS3525_PCLK_DIV1 << 6) | 307 307 AS3525_PCLK_SEL);