2 * Model of Petalogix linux reference design targeting Xilinx Spartan ml605
5 * Copyright (c) 2011 Michal Simek <monstr@monstr.eu>
6 * Copyright (c) 2011 PetaLogix
7 * Copyright (c) 2009 Edgar E. Iglesias.
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
35 #include "device_tree.h"
42 #include "xilinx_axidma.h"
44 #define LMB_BRAM_SIZE (128 * 1024)
45 #define FLASH_SIZE (32 * 1024 * 1024)
49 uint32_t bootstrap_pc
;
54 static void main_cpu_reset(void *opaque
)
56 CPUState
*env
= opaque
;
59 env
->regs
[5] = boot_info
.cmdline
;
60 env
->regs
[7] = boot_info
.fdt
;
61 env
->sregs
[SR_PC
] = boot_info
.bootstrap_pc
;
62 env
->pvr
.regs
[10] = 0x0e000000; /* virtex 6 */
63 /* setup pvr to match kernel setting */
64 env
->pvr
.regs
[5] |= PVR5_DCACHE_WRITEBACK_MASK
;
65 env
->pvr
.regs
[0] |= PVR0_USE_FPU_MASK
| PVR0_ENDI
;
66 env
->pvr
.regs
[0] = (env
->pvr
.regs
[0] & ~PVR0_VERSION_MASK
) | (0x14 << 8);
67 env
->pvr
.regs
[2] ^= PVR2_USE_FPU2_MASK
;
68 env
->pvr
.regs
[4] = 0xc56b8000;
69 env
->pvr
.regs
[5] = 0xc56be000;
72 #define BINARY_DEVICE_TREE_FILE "petalogix-ml605.dtb"
73 static int petalogix_load_device_tree(target_phys_addr_t addr
,
75 target_phys_addr_t initrd_base
,
76 target_phys_addr_t initrd_size
,
77 const char *kernel_cmdline
)
85 /* Try the local "mb.dtb" override. */
86 fdt
= load_device_tree("mb.dtb", &fdt_size
);
88 path
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, BINARY_DEVICE_TREE_FILE
);
90 fdt
= load_device_tree(path
, &fdt_size
);
98 r
= qemu_devtree_setprop_string(fdt
, "/chosen", "bootargs", kernel_cmdline
);
100 fprintf(stderr
, "couldn't set /chosen/bootargs\n");
102 cpu_physical_memory_write(addr
, (void *)fdt
, fdt_size
);
104 /* We lack libfdt so we cannot manipulate the fdt. Just pass on the blob
106 fdt_size
= load_image_targphys("mb.dtb", addr
, 0x10000);
108 path
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, BINARY_DEVICE_TREE_FILE
);
110 fdt_size
= load_image_targphys(path
, addr
, 0x10000);
115 if (kernel_cmdline
) {
117 "Warning: missing libfdt, cannot pass cmdline to kernel!\n");
123 static uint64_t translate_kernel_address(void *opaque
, uint64_t addr
)
125 return addr
- 0x30000000LL
;
128 #define MEMORY_BASEADDR 0x50000000
129 #define FLASH_BASEADDR 0x86000000
130 #define INTC_BASEADDR 0x81800000
131 #define TIMER_BASEADDR 0x83c00000
132 #define UART16550_BASEADDR 0x83e00000
133 #define AXIENET_BASEADDR 0x82780000
134 #define AXIDMA_BASEADDR 0x84600000
137 petalogix_ml605_init(ram_addr_t ram_size
,
138 const char *boot_device
,
139 const char *kernel_filename
,
140 const char *kernel_cmdline
,
141 const char *initrd_filename
, const char *cpu_model
)
148 target_phys_addr_t ddr_base
= MEMORY_BASEADDR
;
149 ram_addr_t phys_lmb_bram
;
151 ram_addr_t phys_flash
;
152 qemu_irq irq
[32], *cpu_irq
;
155 if (cpu_model
== NULL
) {
156 cpu_model
= "microblaze";
158 env
= cpu_init(cpu_model
);
160 qemu_register_reset(main_cpu_reset
, env
);
162 /* Attach emulated BRAM through the LMB. */
163 phys_lmb_bram
= qemu_ram_alloc(NULL
, "petalogix_ml605.lmb_bram",
165 cpu_register_physical_memory(0x00000000, LMB_BRAM_SIZE
,
166 phys_lmb_bram
| IO_MEM_RAM
);
168 phys_ram
= qemu_ram_alloc(NULL
, "petalogix_ml605.ram", ram_size
);
169 cpu_register_physical_memory(ddr_base
, ram_size
, phys_ram
| IO_MEM_RAM
);
171 phys_flash
= qemu_ram_alloc(NULL
, "petalogix_ml605.flash", FLASH_SIZE
);
172 dinfo
= drive_get(IF_PFLASH
, 0, 0);
173 /* 5th parameter 2 means bank-width
174 * 10th paremeter 0 means little-endian */
175 pflash_cfi01_register(FLASH_BASEADDR
, phys_flash
,
176 dinfo
? dinfo
->bdrv
: NULL
, (64 * 1024),
178 2, 0x89, 0x18, 0x0000, 0x0, 0);
181 cpu_irq
= microblaze_pic_init_cpu(env
);
182 dev
= xilinx_intc_create(INTC_BASEADDR
, cpu_irq
[0], 4);
183 for (i
= 0; i
< 32; i
++) {
184 irq
[i
] = qdev_get_gpio_in(dev
, i
);
187 serial_mm_init(UART16550_BASEADDR
+ 0x1000, 2, irq
[5], 115200,
188 serial_hds
[0], 1, 0);
190 /* 2 timers at irq 2 @ 100 Mhz. */
191 xilinx_timer_create(TIMER_BASEADDR
, irq
[2], 2, 100 * 1000000);
193 /* axi ethernet and dma initialization. TODO: Dynamically connect them. */
195 static struct XilinxDMAConnection dmach
;
197 xilinx_axiethernet_create(&dmach
, &nd_table
[0], 0x82780000,
198 irq
[3], 0x1000, 0x1000);
199 xilinx_axiethernetdma_create(&dmach
, 0x84600000,
200 irq
[1], irq
[0], 100 * 1000000);
203 if (kernel_filename
) {
204 uint64_t entry
, low
, high
;
208 #ifdef TARGET_WORDS_BIGENDIAN
212 /* Boots a kernel elf binary. */
213 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
,
215 big_endian
, ELF_MACHINE
, 0);
217 if (base32
== 0xc0000000) {
218 kernel_size
= load_elf(kernel_filename
, translate_kernel_address
,
219 NULL
, &entry
, NULL
, NULL
,
220 big_endian
, ELF_MACHINE
, 0);
222 /* Always boot into physical ram. */
223 boot_info
.bootstrap_pc
= ddr_base
+ (entry
& 0x0fffffff);
225 /* If it wasn't an ELF image, try an u-boot image. */
226 if (kernel_size
< 0) {
227 target_phys_addr_t uentry
, loadaddr
;
229 kernel_size
= load_uimage(kernel_filename
, &uentry
, &loadaddr
, 0);
230 boot_info
.bootstrap_pc
= uentry
;
231 high
= (loadaddr
+ kernel_size
+ 3) & ~3;
234 /* Not an ELF image nor an u-boot image, try a RAW image. */
235 if (kernel_size
< 0) {
236 kernel_size
= load_image_targphys(kernel_filename
, ddr_base
,
238 boot_info
.bootstrap_pc
= ddr_base
;
239 high
= (ddr_base
+ kernel_size
+ 3) & ~3;
242 boot_info
.cmdline
= high
+ 4096;
243 if (kernel_cmdline
&& strlen(kernel_cmdline
)) {
244 pstrcpy_targphys("cmdline", boot_info
.cmdline
, 256, kernel_cmdline
);
246 /* Provide a device-tree. */
247 boot_info
.fdt
= boot_info
.cmdline
+ 4096;
248 petalogix_load_device_tree(boot_info
.fdt
, ram_size
,
254 static QEMUMachine petalogix_ml605_machine
= {
255 .name
= "petalogix-ml605",
256 .desc
= "PetaLogix linux refdesign for xilinx ml605 little endian",
257 .init
= petalogix_ml605_init
,
261 static void petalogix_ml605_machine_init(void)
263 qemu_register_machine(&petalogix_ml605_machine
);
266 machine_init(petalogix_ml605_machine_init
);