Searched defs:sram (Results 1 - 6 of 6) sorted by relevance

/arch/powerpc/boot/
H A Dtreeboot-walnut.c25 void *devp, *sram; local
47 sram = finddevice("/plb/ebc/sram");
48 if (!sram)
49 fatal("Couldn't locate sram node\n\r");
51 if (getprop(sram, "reg", reg_sram, sizeof(reg_sram)) != sizeof(reg_sram))
52 fatal("sram reg property has unexpected size\n\r");
60 setprop(sram, "reg", reg_sram, sizeof(reg_sram));
/arch/avr32/mach-at32ap/
H A Dpm.c19 #include <mach/sram.h>
116 void *sram; local
120 sram = avr32_pm_map_sram();
122 /* Switch to in-sram exception handlers */
124 sysreg_write(EVBA, (unsigned long)sram);
142 sram = avr32_pm_map_sram();
144 /* Switch to in-sram exception handlers */
146 sysreg_write(EVBA, (unsigned long)sram);
/arch/powerpc/platforms/52xx/
H A Dlite5200_pm.c9 extern void lite5200_low_power(void __iomem *sram, void __iomem *mbar);
18 static void __iomem *sram; variable
84 sram = mbar + 0x8000;
108 _memcpy_fromio(saved_sram, sram, sram_size);
114 _memcpy_toio(sram, saved_sram, sram_size);
216 lite5200_low_power(sram, mbar);
H A Dmpc52xx_pm.c9 extern void mpc52xx_deep_sleep(void __iomem *sram, void __iomem *sdram_regs,
21 static void __iomem *sram; variable
90 sram = mbar + 0x8000; /* Those will be handled by the */
129 memcpy(saved_sram, sram, sram_size);
131 /* copy low level suspend code to sram */
132 memcpy(sram, mpc52xx_ds_sram, mpc52xx_ds_sram_size);
156 mpc52xx_deep_sleep(sram, sdram, cdm, intr);
172 memcpy(sram, saved_sram, sram_size);
/arch/arm/mach-ixp4xx/include/mach/
H A Dqmgr.h57 u32 sram[2048]; /* 0x2000 - 0x3FFF - config and buffer */ member in struct:qmgr_regs
/arch/arm/mach-pxa/
H A Dpxa3xx.c101 static void __iomem *sram; variable
115 void (*fn)(unsigned int) = (void __force *)(sram + 0x8000);
117 memcpy_toio(sram + 0x8000, pm_enter_standby_start,
216 sram = ioremap(ISRAM_START, ISRAM_SIZE);
217 if (!sram) {

Completed in 341 milliseconds