mpc8544_guts.c (51455c59ddc370612f6e070d8eb0e594aaa7ef24) | mpc8544_guts.c (0d75590d919454be322f21d55494b8937651fc86) |
---|---|
1/* 2 * QEMU PowerPC MPC8544 global util pseudo-device 3 * 4 * Copyright (C) 2011 Freescale Semiconductor, Inc. All rights reserved. 5 * 6 * Author: Alexander Graf, <alex@csgraf.de> 7 * 8 * This is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * ***************************************************************** 14 * 15 * The documentation for this device is noted in the MPC8544 documentation, 16 * file name "MPC8544ERM.pdf". You can easily find it on the web. 17 * 18 */ 19 | 1/* 2 * QEMU PowerPC MPC8544 global util pseudo-device 3 * 4 * Copyright (C) 2011 Freescale Semiconductor, Inc. All rights reserved. 5 * 6 * Author: Alexander Graf, <alex@csgraf.de> 7 * 8 * This is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * ***************************************************************** 14 * 15 * The documentation for this device is noted in the MPC8544 documentation, 16 * file name "MPC8544ERM.pdf". You can easily find it on the web. 17 * 18 */ 19 |
20#include "qemu/osdep.h" |
|
20#include "hw/hw.h" 21#include "sysemu/sysemu.h" 22#include "hw/sysbus.h" 23 24#define MPC8544_GUTS_MMIO_SIZE 0x1000 25#define MPC8544_GUTS_RSTCR_RESET 0x02 26 27#define MPC8544_GUTS_ADDR_PORPLLSR 0x00 --- 113 unchanged lines hidden --- | 21#include "hw/hw.h" 22#include "sysemu/sysemu.h" 23#include "hw/sysbus.h" 24 25#define MPC8544_GUTS_MMIO_SIZE 0x1000 26#define MPC8544_GUTS_RSTCR_RESET 0x02 27 28#define MPC8544_GUTS_ADDR_PORPLLSR 0x00 --- 113 unchanged lines hidden --- |