Lines Matching +full:0 +full:x4500000
19 #define IO_MEM_RESOURCE_START 0UL
20 #define IO_MEM_RESOURCE_END 0x1fffffffUL
26 #define MIPS_SOFTINT0_IRQ MIPS_CPU_IRQ(0)
53 #define REG_BASE ((u32 *) CKSEG1ADDR(0x4400000))
63 0x00013212, 0x00000000, 0x00000140, 0x00000200,
64 0x00000000, 0x03e52239, 0x0000020d, 0x00000c15,
65 0x0c150c15, 0x006c02ec, 0x002501ff, 0x000e0204,
66 0x00000200, 0x00000400
69 #define MI_REG_BASE 0x4300000
71 #define AI_REG_BASE 0x4500000
73 #define PI_REG_BASE 0x4600000
75 #define SI_REG_BASE 0x4800000
92 memset(res, 0, sizeof(struct resource) * 3); in n64_platform_init()
93 res[0].flags = IORESOURCE_MEM; in n64_platform_init()
94 res[0].start = MI_REG_BASE; in n64_platform_init()
95 res[0].end = MI_REG_BASE + NUM_MI_REGS * 4 - 1; in n64_platform_init()
107 memset(&res[0], 0, sizeof(res[0])); in n64_platform_init()
108 res[0].flags = IORESOURCE_MEM; in n64_platform_init()
109 res[0].start = PI_REG_BASE; in n64_platform_init()
110 res[0].end = PI_REG_BASE + NUM_PI_REGS * 4 - 1; in n64_platform_init()
114 memset(&res[0], 0, sizeof(res[0])); in n64_platform_init()
115 res[0].flags = IORESOURCE_MEM; in n64_platform_init()
116 res[0].start = SI_REG_BASE; in n64_platform_init()
117 res[0].end = SI_REG_BASE + NUM_SI_REGS * 4 - 1; in n64_platform_init()
129 for (i = 0; i < ARRAY_SIZE(ntsc_320); i++) { in n64_platform_init()
137 memset(&res[0], 0, sizeof(res[0])); in n64_platform_init()
138 res[0].flags = IORESOURCE_MEM; in n64_platform_init()
139 res[0].name = simplefb_resname; in n64_platform_init()
140 res[0].start = phys; in n64_platform_init()
141 res[0].end = phys + W * H * 2 - 1; in n64_platform_init()
143 platform_device_register_resndata(NULL, "simple-framebuffer", 0, in n64_platform_init()
144 &res[0], 1, &mode, sizeof(mode)); in n64_platform_init()
146 return 0; in n64_platform_init()
157 memblock_add(0x0, 8 * 1024 * 1024); /* Bootloader blocks the 4mb config */ in plat_mem_setup()