2011-02-17 23:45:13 +01:00
|
|
|
/*
|
|
|
|
* LatticeMico32 hwsetup helper functions.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Michael Walle <michael@walle.cc>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These are helper functions for creating the hardware description blob used
|
|
|
|
* in the Theobroma's uClinux port.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_HW_LM32_HWSETUP_H
|
|
|
|
#define QEMU_HW_LM32_HWSETUP_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2016-03-20 18:16:19 +01:00
|
|
|
#include "qemu/cutils.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/loader.h"
|
2011-02-17 23:45:13 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void *data;
|
|
|
|
void *ptr;
|
|
|
|
} HWSetup;
|
|
|
|
|
|
|
|
enum hwsetup_tag {
|
|
|
|
HWSETUP_TAG_EOL = 0,
|
|
|
|
HWSETUP_TAG_CPU = 1,
|
|
|
|
HWSETUP_TAG_ASRAM = 2,
|
|
|
|
HWSETUP_TAG_FLASH = 3,
|
|
|
|
HWSETUP_TAG_SDRAM = 4,
|
|
|
|
HWSETUP_TAG_OCM = 5,
|
|
|
|
HWSETUP_TAG_DDR_SDRAM = 6,
|
|
|
|
HWSETUP_TAG_DDR2_SDRAM = 7,
|
|
|
|
HWSETUP_TAG_TIMER = 8,
|
|
|
|
HWSETUP_TAG_UART = 9,
|
|
|
|
HWSETUP_TAG_GPIO = 10,
|
|
|
|
HWSETUP_TAG_TRISPEEDMAC = 11,
|
|
|
|
HWSETUP_TAG_I2CM = 12,
|
|
|
|
HWSETUP_TAG_LEDS = 13,
|
|
|
|
HWSETUP_TAG_7SEG = 14,
|
|
|
|
HWSETUP_TAG_SPI_S = 15,
|
|
|
|
HWSETUP_TAG_SPI_M = 16,
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline HWSetup *hwsetup_init(void)
|
|
|
|
{
|
|
|
|
HWSetup *hw;
|
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
hw = g_malloc(sizeof(HWSetup));
|
|
|
|
hw->data = g_malloc0(TARGET_PAGE_SIZE);
|
2011-02-17 23:45:13 +01:00
|
|
|
hw->ptr = hw->data;
|
|
|
|
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_free(HWSetup *hw)
|
|
|
|
{
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(hw->data);
|
|
|
|
g_free(hw);
|
2011-02-17 23:45:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_create_rom(HWSetup *hw,
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr base)
|
2011-02-17 23:45:13 +01:00
|
|
|
{
|
2014-11-17 06:51:50 +01:00
|
|
|
rom_add_blob("hwsetup", hw->data, TARGET_PAGE_SIZE,
|
loader: fix handling of custom address spaces when adding ROM blobs
* Commit 3e76099aacb4 ("loader: Allow a custom AddressSpace when loading
ROMs") introduced the "Rom.as" field:
(1) It modified the utility callers of rom_insert() to take "as" as a
new parameter from *their* callers, and set "rom->as" from that
parameter. The functions covered were rom_add_file() and
rom_add_elf_program().
(2) It also modified rom_insert() itself, to auto-assign
"&address_space_memory", in case the external caller passed -- and
the utility caller forwarded -- as=NULL.
Except, commit 3e76099aacb4 forgot to update the third utility caller of
rom_insert(), under point (1), namely rom_add_blob().
* Later, commit 5e774eb3bd264 ("loader: Add AddressSpace loading support
to uImages") added the load_uimage_as() function, and the
rom_add_blob_fixed_as() function-like macro, with the necessary changes
elsewhere to propagate the new "as" parameter to rom_add_blob():
load_uimage_as()
load_uboot_image()
rom_add_blob_fixed_as()
rom_add_blob()
At this point, the signature (and workings) of rom_add_blob() had been
broken already, and the rom_add_blob_fixed_as() macro passed its "_as"
parameter to rom_add_blob() as "callback_opaque". Given that the
"fw_callback" parameter itself was set to NULL (correctly), this did no
additional damage (the opaque arg would never be used), but ultimately
it broke the new functionality of load_uimage_as().
* The load_uimage_as() function would be put to use in one of the later
patches, commit e481a1f63c93 ("generic-loader: Add a generic loader").
* We can fix this only in a unified patch now. Append "AddressSpace *as"
to the signature of rom_add_blob(), and handle the new parameter. Pass
NULL from all current callers, except from rom_add_blob_fixed_as(),
where "_as" has to be bumped to the proper position.
* Note that rom_add_file() rejects the case when both "mr" and "as" are
passed in as non-NULL. The action that this is apparently supposed to
prevent is the
rom->mr = mr;
assignment (that's the only place where the "mr" parameter is used in
rom_add_file()). In rom_add_blob() though, we have no "mr" parameter,
and the actions done on the fw_cfg branch:
if (fw_file_name && fw_cfg) {
if (mc->rom_file_has_mr) {
data = rom_set_mr(rom, OBJECT(fw_cfg), devpath);
mr = rom->mr;
} else {
data = rom->data;
}
reflect those that are performed by rom_add_file() too (with mr==NULL):
if (rom->fw_file && fw_cfg) {
if ((!option_rom || mc->option_rom_has_mr) &&
mc->rom_file_has_mr) {
data = rom_set_mr(rom, OBJECT(fw_cfg), devpath);
} else {
data = rom->data;
}
Hence we need no additional restrictions in rom_add_blob().
* Stable is not affected as both problematic commits appeared first in
v2.8.0-rc0.
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Alistair Francis <alistair.francis@xilinx.com>
Cc: Igor Mammedov <imammedo@redhat.com>
Cc: Michael Walle <michael@walle.cc>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Shannon Zhao <zhaoshenglong@huawei.com>
Cc: qemu-arm@nongnu.org
Cc: qemu-devel@nongnu.org
Fixes: 3e76099aacb4dae0d37ebf95305369e03d1491e6
Fixes: 5e774eb3bd264c76484906f4bd0fb38e00b8090e
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-11-29 20:55:32 +01:00
|
|
|
TARGET_PAGE_SIZE, base, NULL, NULL, NULL, NULL);
|
2011-02-17 23:45:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_u8(HWSetup *hw, uint8_t u)
|
|
|
|
{
|
|
|
|
stb_p(hw->ptr, u);
|
|
|
|
hw->ptr += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_u32(HWSetup *hw, uint32_t u)
|
|
|
|
{
|
|
|
|
stl_p(hw->ptr, u);
|
|
|
|
hw->ptr += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_tag(HWSetup *hw, enum hwsetup_tag t)
|
|
|
|
{
|
|
|
|
stl_p(hw->ptr, t);
|
|
|
|
hw->ptr += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_str(HWSetup *hw, const char *str)
|
|
|
|
{
|
2012-10-04 13:09:50 +02:00
|
|
|
pstrcpy(hw->ptr, 32, str);
|
2011-02-17 23:45:13 +01:00
|
|
|
hw->ptr += 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_trailer(HWSetup *hw)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 8); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_cpu(HWSetup *hw,
|
|
|
|
const char *name, uint32_t frequency)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 44); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_CPU);
|
|
|
|
hwsetup_add_str(hw, name);
|
|
|
|
hwsetup_add_u32(hw, frequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_flash(HWSetup *hw,
|
|
|
|
const char *name, uint32_t base, uint32_t size)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 52); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_FLASH);
|
|
|
|
hwsetup_add_str(hw, name);
|
|
|
|
hwsetup_add_u32(hw, base);
|
|
|
|
hwsetup_add_u32(hw, size);
|
|
|
|
hwsetup_add_u8(hw, 8); /* read latency */
|
|
|
|
hwsetup_add_u8(hw, 8); /* write latency */
|
|
|
|
hwsetup_add_u8(hw, 25); /* address width */
|
|
|
|
hwsetup_add_u8(hw, 32); /* data width */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_ddr_sdram(HWSetup *hw,
|
|
|
|
const char *name, uint32_t base, uint32_t size)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 48); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_DDR_SDRAM);
|
|
|
|
hwsetup_add_str(hw, name);
|
|
|
|
hwsetup_add_u32(hw, base);
|
|
|
|
hwsetup_add_u32(hw, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_timer(HWSetup *hw,
|
|
|
|
const char *name, uint32_t base, uint32_t irq)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 56); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_TIMER);
|
|
|
|
hwsetup_add_str(hw, name);
|
|
|
|
hwsetup_add_u32(hw, base);
|
|
|
|
hwsetup_add_u8(hw, 1); /* wr_tickcount */
|
|
|
|
hwsetup_add_u8(hw, 1); /* rd_tickcount */
|
|
|
|
hwsetup_add_u8(hw, 1); /* start_stop_control */
|
|
|
|
hwsetup_add_u8(hw, 32); /* counter_width */
|
|
|
|
hwsetup_add_u32(hw, 20); /* reload_ticks */
|
|
|
|
hwsetup_add_u8(hw, irq);
|
|
|
|
hwsetup_add_u8(hw, 0); /* padding */
|
|
|
|
hwsetup_add_u8(hw, 0); /* padding */
|
|
|
|
hwsetup_add_u8(hw, 0); /* padding */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void hwsetup_add_uart(HWSetup *hw,
|
|
|
|
const char *name, uint32_t base, uint32_t irq)
|
|
|
|
{
|
|
|
|
hwsetup_add_u32(hw, 56); /* size */
|
|
|
|
hwsetup_add_tag(hw, HWSETUP_TAG_UART);
|
|
|
|
hwsetup_add_str(hw, name);
|
|
|
|
hwsetup_add_u32(hw, base);
|
|
|
|
hwsetup_add_u32(hw, 115200); /* baudrate */
|
|
|
|
hwsetup_add_u8(hw, 8); /* databits */
|
|
|
|
hwsetup_add_u8(hw, 1); /* stopbits */
|
|
|
|
hwsetup_add_u8(hw, 1); /* use_interrupt */
|
|
|
|
hwsetup_add_u8(hw, 1); /* block_on_transmit */
|
|
|
|
hwsetup_add_u8(hw, 1); /* block_on_receive */
|
|
|
|
hwsetup_add_u8(hw, 4); /* rx_buffer_size */
|
|
|
|
hwsetup_add_u8(hw, 4); /* tx_buffer_size */
|
|
|
|
hwsetup_add_u8(hw, irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* QEMU_HW_LM32_HWSETUP_H */
|