mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00

Invert the 'no_sdcard' logic, renaming it as the more explicit "auto_create_sdcard". Machines are supposed to create a SD Card drive when this flag is set. In many cases it doesn't make much sense (as boards don't expose SD Card host controller), but this is patch only aims to expose that nonsense; so no logical change intended (mechanical patch using gsed). Most of the changes are: - mc->no_sdcard = ON_OFF_AUTO_OFF; + mc->auto_create_sdcard = true; Except in . hw/core/null-machine.c . hw/arm/xilinx_zynq.c . hw/s390x/s390-virtio-ccw.c where the disabled option is manually removed (since default): - mc->no_sdcard = ON_OFF_AUTO_ON; + mc->auto_create_sdcard = false; - mc->auto_create_sdcard = false; and in system/vl.c we change the 'default_sdcard' type to boolean. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20250204200934.65279-4-philmd@linaro.org>
69 lines
2.5 KiB
C
69 lines
2.5 KiB
C
/*
|
|
* Netduino 2 Machine Model
|
|
*
|
|
* Copyright (c) 2014 Alistair Francis <alistair@alistair23.me>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "hw/boards.h"
|
|
#include "hw/qdev-properties.h"
|
|
#include "hw/qdev-clock.h"
|
|
#include "qemu/error-report.h"
|
|
#include "hw/arm/stm32f205_soc.h"
|
|
#include "hw/arm/boot.h"
|
|
|
|
/* Main SYSCLK frequency in Hz (120MHz) */
|
|
#define SYSCLK_FRQ 120000000ULL
|
|
|
|
static void netduino2_init(MachineState *machine)
|
|
{
|
|
DeviceState *dev;
|
|
Clock *sysclk;
|
|
|
|
/* This clock doesn't need migration because it is fixed-frequency */
|
|
sysclk = clock_new(OBJECT(machine), "SYSCLK");
|
|
clock_set_hz(sysclk, SYSCLK_FRQ);
|
|
|
|
dev = qdev_new(TYPE_STM32F205_SOC);
|
|
object_property_add_child(OBJECT(machine), "soc", OBJECT(dev));
|
|
qdev_connect_clock_in(dev, "sysclk", sysclk);
|
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
|
|
|
|
armv7m_load_kernel(STM32F205_SOC(dev)->armv7m.cpu, machine->kernel_filename,
|
|
0, FLASH_SIZE);
|
|
}
|
|
|
|
static void netduino2_machine_init(MachineClass *mc)
|
|
{
|
|
static const char * const valid_cpu_types[] = {
|
|
ARM_CPU_TYPE_NAME("cortex-m3"),
|
|
NULL
|
|
};
|
|
|
|
mc->desc = "Netduino 2 Machine (Cortex-M3)";
|
|
mc->init = netduino2_init;
|
|
mc->valid_cpu_types = valid_cpu_types;
|
|
mc->ignore_memory_transaction_failures = true;
|
|
mc->auto_create_sdcard = true;
|
|
}
|
|
|
|
DEFINE_MACHINE("netduino2", netduino2_machine_init)
|