2013-12-17 20:42:36 +01:00
|
|
|
/*
|
|
|
|
* QEMU model of the Canon DIGIC boards (cameras indeed :).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com>
|
|
|
|
*
|
|
|
|
* This model is based on reverse engineering efforts
|
|
|
|
* made by CHDK (http://chdk.wikia.com) and
|
|
|
|
* Magic Lantern (http://www.magiclantern.fm) projects
|
|
|
|
* contributors.
|
|
|
|
*
|
|
|
|
* See docs here:
|
|
|
|
* http://magiclantern.wikia.com/wiki/Register_Map
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-12-07 17:23:45 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2016-01-19 21:51:44 +01:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "cpu.h"
|
2013-12-17 20:42:36 +01:00
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "exec/address-spaces.h"
|
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "hw/arm/digic.h"
|
2013-12-17 20:42:37 +01:00
|
|
|
#include "hw/block/flash.h"
|
|
|
|
#include "hw/loader.h"
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#include "sysemu/qtest.h"
|
|
|
|
|
|
|
|
#define DIGIC4_ROM0_BASE 0xf0000000
|
|
|
|
#define DIGIC4_ROM1_BASE 0xf8000000
|
|
|
|
#define DIGIC4_ROM_MAX_SIZE 0x08000000
|
2013-12-17 20:42:36 +01:00
|
|
|
|
|
|
|
typedef struct DigicBoardState {
|
|
|
|
DigicState *digic;
|
|
|
|
MemoryRegion ram;
|
|
|
|
} DigicBoardState;
|
|
|
|
|
|
|
|
typedef struct DigicBoard {
|
|
|
|
hwaddr ram_size;
|
2013-12-17 20:42:37 +01:00
|
|
|
void (*add_rom0)(DigicBoardState *, hwaddr, const char *);
|
|
|
|
const char *rom0_def_filename;
|
|
|
|
void (*add_rom1)(DigicBoardState *, hwaddr, const char *);
|
|
|
|
const char *rom1_def_filename;
|
2013-12-17 20:42:36 +01:00
|
|
|
} DigicBoard;
|
|
|
|
|
|
|
|
static void digic4_board_setup_ram(DigicBoardState *s, hwaddr ram_size)
|
|
|
|
{
|
2015-04-04 14:24:38 +02:00
|
|
|
memory_region_allocate_system_memory(&s->ram, NULL, "ram", ram_size);
|
2013-12-17 20:42:36 +01:00
|
|
|
memory_region_add_subregion(get_system_memory(), 0, &s->ram);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void digic4_board_init(DigicBoard *board)
|
|
|
|
{
|
|
|
|
Error *err = NULL;
|
|
|
|
|
|
|
|
DigicBoardState *s = g_new(DigicBoardState, 1);
|
|
|
|
|
|
|
|
s->digic = DIGIC(object_new(TYPE_DIGIC));
|
|
|
|
object_property_set_bool(OBJECT(s->digic), true, "realized", &err);
|
|
|
|
if (err != NULL) {
|
2015-12-18 16:35:14 +01:00
|
|
|
error_reportf_err(err, "Couldn't realize DIGIC SoC: ");
|
2013-12-17 20:42:36 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
digic4_board_setup_ram(s, board->ram_size);
|
2013-12-17 20:42:37 +01:00
|
|
|
|
|
|
|
if (board->add_rom0) {
|
|
|
|
board->add_rom0(s, DIGIC4_ROM0_BASE, board->rom0_def_filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (board->add_rom1) {
|
|
|
|
board->add_rom1(s, DIGIC4_ROM1_BASE, board->rom1_def_filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void digic_load_rom(DigicBoardState *s, hwaddr addr,
|
|
|
|
hwaddr max_size, const char *def_filename)
|
|
|
|
{
|
|
|
|
target_long rom_size;
|
|
|
|
const char *filename;
|
|
|
|
|
|
|
|
if (qtest_enabled()) {
|
|
|
|
/* qtest runs no code so don't attempt a ROM load which
|
|
|
|
* could fail and result in a spurious test failure.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bios_name) {
|
|
|
|
filename = bios_name;
|
|
|
|
} else {
|
|
|
|
filename = def_filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filename) {
|
|
|
|
char *fn = qemu_find_file(QEMU_FILE_TYPE_BIOS, filename);
|
|
|
|
|
|
|
|
if (!fn) {
|
2015-02-25 05:22:36 +01:00
|
|
|
error_report("Couldn't find rom image '%s'.", filename);
|
2013-12-17 20:42:37 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
rom_size = load_image_targphys(fn, addr, max_size);
|
|
|
|
if (rom_size < 0 || rom_size > max_size) {
|
2015-02-25 05:22:36 +01:00
|
|
|
error_report("Couldn't load rom image '%s'.", filename);
|
2013-12-17 20:42:37 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2015-03-05 03:58:32 +01:00
|
|
|
g_free(fn);
|
2013-12-17 20:42:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Samsung K8P3215UQB
|
|
|
|
* 64M Bit (4Mx16) Page Mode / Multi-Bank NOR Flash Memory
|
|
|
|
*/
|
|
|
|
static void digic4_add_k8p3215uqb_rom(DigicBoardState *s, hwaddr addr,
|
|
|
|
const char *def_filename)
|
|
|
|
{
|
|
|
|
#define FLASH_K8P3215UQB_SIZE (4 * 1024 * 1024)
|
|
|
|
#define FLASH_K8P3215UQB_SECTOR_SIZE (64 * 1024)
|
|
|
|
|
|
|
|
pflash_cfi02_register(addr, NULL, "pflash", FLASH_K8P3215UQB_SIZE,
|
|
|
|
NULL, FLASH_K8P3215UQB_SECTOR_SIZE,
|
|
|
|
FLASH_K8P3215UQB_SIZE / FLASH_K8P3215UQB_SECTOR_SIZE,
|
|
|
|
DIGIC4_ROM_MAX_SIZE / FLASH_K8P3215UQB_SIZE,
|
|
|
|
4,
|
|
|
|
0x00EC, 0x007E, 0x0003, 0x0001,
|
|
|
|
0x0555, 0x2aa, 0);
|
|
|
|
|
|
|
|
digic_load_rom(s, addr, FLASH_K8P3215UQB_SIZE, def_filename);
|
2013-12-17 20:42:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static DigicBoard digic4_board_canon_a1100 = {
|
|
|
|
.ram_size = 64 * 1024 * 1024,
|
2013-12-17 20:42:37 +01:00
|
|
|
.add_rom1 = digic4_add_k8p3215uqb_rom,
|
|
|
|
.rom1_def_filename = "canon-a1100-rom1.bin",
|
2013-12-17 20:42:36 +01:00
|
|
|
};
|
|
|
|
|
2014-05-07 16:42:57 +02:00
|
|
|
static void canon_a1100_init(MachineState *machine)
|
2013-12-17 20:42:36 +01:00
|
|
|
{
|
|
|
|
digic4_board_init(&digic4_board_canon_a1100);
|
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
static void canon_a1100_machine_init(MachineClass *mc)
|
2013-12-17 20:42:36 +01:00
|
|
|
{
|
2015-09-04 20:37:08 +02:00
|
|
|
mc->desc = "Canon PowerShot A1100 IS";
|
|
|
|
mc->init = &canon_a1100_init;
|
2013-12-17 20:42:36 +01:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
DEFINE_MACHINE("canon-a1100", canon_a1100_machine_init)
|