mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
target-arm queue:
* raspi: add model of cprman clock manager * sbsa-ref: add an SBSA generic watchdog device * arm/trace: Fix hex printing * raspi: Add models of Pi 3 model A+, Pi Zero and Pi A+ * hw/arm/smmuv3: Set the restoration priority of the vSMMUv3 explicitly * Nuvoton NPCM7xx: Add USB, RNG, GPIO and watchdog support * hw/arm: fix min_cpus for xlnx-versal-virt platform * hw/arm/highbank: Silence warnings about missing fallthrough statements * linux-user: Support Aarch64 BTI * Armv7M systick: fix corner case bugs by rewriting to use ptimer -----BEGIN PGP SIGNATURE----- iQJNBAABCAA3FiEE4aXFk81BneKOgxXPPCUl7RQ2DN4FAl+YBA4ZHHBldGVyLm1h eWRlbGxAbGluYXJvLm9yZwAKCRA8JSXtFDYM3rWRD/9hqjzL4d7xKcFQdQdRXsxv 7zX82arHdxg9pNvusie/tuhX0PLswQ8TPEHEBVQvngxF7y/HqLBFuZAQvFf4ou6R 9+myTXE2RuWHOYKlrr/M6p4csABXNMm7PiA3VMeKcTEh4DoamLyBz6j1X4obPiA+ tLaRw4azzYAZnHoCaF6BX+4uf4bQZoqAtAS4IodJAAbDXJStl0VUFoS34MPhgW6/ dwGF8DbQJVYRqa7xEXck4Yx7dkx13I66+iYUf9kCyoCkdyz1sIq58fbKhXQP4lqN I3e5XGBVJfeku7w/TGOpsw8OCyTng0z636iglfLVOrsj5N03fT8j72ehY7jJsN9f CgHvQ1JAX1DvA/v23oxs3WccwAOfJJsOERtf9QxyMbTR1czCeIY1LYMnkOFtyL87 6IQpwM0WF1z4lja0dmrvhKJWjqn+kVI2cDtxrprsulCHi+pcIdJMq8vJDfxjpqqe SnDXVSAn8KjBrClaJRqHfbi+5ggsTwsLpBtEToQ4AOR342XVRfEY8IfTLb1D2+6q z99BFiyJtZ6iiJq5jgGMhppN6tEuHFK7Vr6IwhGDgFTchWb6by+K3i8/VzrbWVk9 O+KEeO92dg6jVd+6FyXOPnJ3DcUXEp6EVUVrKBBUC+LTU8Lf1MCgeprjSi87UHIX xQg635uOQU3gxkqxCaE0XA== =OFlu -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20201027-1' into staging target-arm queue: * raspi: add model of cprman clock manager * sbsa-ref: add an SBSA generic watchdog device * arm/trace: Fix hex printing * raspi: Add models of Pi 3 model A+, Pi Zero and Pi A+ * hw/arm/smmuv3: Set the restoration priority of the vSMMUv3 explicitly * Nuvoton NPCM7xx: Add USB, RNG, GPIO and watchdog support * hw/arm: fix min_cpus for xlnx-versal-virt platform * hw/arm/highbank: Silence warnings about missing fallthrough statements * linux-user: Support Aarch64 BTI * Armv7M systick: fix corner case bugs by rewriting to use ptimer # gpg: Signature made Tue 27 Oct 2020 11:27:10 GMT # gpg: using RSA key E1A5C593CD419DE28E8315CF3C2525ED14360CDE # gpg: issuer "peter.maydell@linaro.org" # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" [ultimate] # gpg: aka "Peter Maydell <pmaydell@gmail.com>" [ultimate] # gpg: aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" [ultimate] # Primary key fingerprint: E1A5 C593 CD41 9DE2 8E83 15CF 3C25 25ED 1436 0CDE * remotes/pmaydell/tags/pull-target-arm-20201027-1: (48 commits) hw/timer/armv7m_systick: Rewrite to use ptimers hw/core/ptimer: Support ptimer being disabled by timer callback hw/arm/sbsa-ref: add SBSA watchdog device hw/watchdog: Implement SBSA watchdog device hw/arm/bcm2835_peripherals: connect the UART clock hw/char/pl011: add a clock input hw/misc/bcm2835_cprman: add sane reset values to the registers hw/misc/bcm2835_cprman: add the DSI0HSCK multiplexer hw/misc/bcm2835_cprman: implement clock mux behaviour hw/misc/bcm2835_cprman: add a clock mux skeleton implementation hw/misc/bcm2835_cprman: implement PLL channels behaviour hw/misc/bcm2835_cprman: add a PLL channel skeleton implementation hw/misc/bcm2835_cprman: implement PLLs behaviour hw/misc/bcm2835_cprman: add a PLL skeleton implementation hw/arm/raspi: add a skeleton implementation of the CPRMAN hw/arm/raspi: fix CPRMAN base address hw/core/clock: trace clock values in Hz instead of ns hw/core/clock: provide the VMSTATE_ARRAY_CLOCK macro arm/trace: Fix hex printing hw/arm/raspi: Add the Raspberry Pi 3 model A+ ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
802427bcda
64 changed files with 5461 additions and 279 deletions
210
include/hw/misc/bcm2835_cprman.h
Normal file
210
include/hw/misc/bcm2835_cprman.h
Normal file
|
@ -0,0 +1,210 @@
|
|||
/*
|
||||
* BCM2835 CPRMAN clock manager
|
||||
*
|
||||
* Copyright (c) 2020 Luc Michel <luc@lmichel.fr>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef HW_MISC_CPRMAN_H
|
||||
#define HW_MISC_CPRMAN_H
|
||||
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/qdev-clock.h"
|
||||
|
||||
#define TYPE_BCM2835_CPRMAN "bcm2835-cprman"
|
||||
|
||||
typedef struct BCM2835CprmanState BCM2835CprmanState;
|
||||
|
||||
DECLARE_INSTANCE_CHECKER(BCM2835CprmanState, CPRMAN,
|
||||
TYPE_BCM2835_CPRMAN)
|
||||
|
||||
#define CPRMAN_NUM_REGS (0x2000 / sizeof(uint32_t))
|
||||
|
||||
typedef enum CprmanPll {
|
||||
CPRMAN_PLLA = 0,
|
||||
CPRMAN_PLLC,
|
||||
CPRMAN_PLLD,
|
||||
CPRMAN_PLLH,
|
||||
CPRMAN_PLLB,
|
||||
|
||||
CPRMAN_NUM_PLL
|
||||
} CprmanPll;
|
||||
|
||||
typedef enum CprmanPllChannel {
|
||||
CPRMAN_PLLA_CHANNEL_DSI0 = 0,
|
||||
CPRMAN_PLLA_CHANNEL_CORE,
|
||||
CPRMAN_PLLA_CHANNEL_PER,
|
||||
CPRMAN_PLLA_CHANNEL_CCP2,
|
||||
|
||||
CPRMAN_PLLC_CHANNEL_CORE2,
|
||||
CPRMAN_PLLC_CHANNEL_CORE1,
|
||||
CPRMAN_PLLC_CHANNEL_PER,
|
||||
CPRMAN_PLLC_CHANNEL_CORE0,
|
||||
|
||||
CPRMAN_PLLD_CHANNEL_DSI0,
|
||||
CPRMAN_PLLD_CHANNEL_CORE,
|
||||
CPRMAN_PLLD_CHANNEL_PER,
|
||||
CPRMAN_PLLD_CHANNEL_DSI1,
|
||||
|
||||
CPRMAN_PLLH_CHANNEL_AUX,
|
||||
CPRMAN_PLLH_CHANNEL_RCAL,
|
||||
CPRMAN_PLLH_CHANNEL_PIX,
|
||||
|
||||
CPRMAN_PLLB_CHANNEL_ARM,
|
||||
|
||||
CPRMAN_NUM_PLL_CHANNEL,
|
||||
|
||||
/* Special values used when connecting clock sources to clocks */
|
||||
CPRMAN_CLOCK_SRC_NORMAL = -1,
|
||||
CPRMAN_CLOCK_SRC_FORCE_GROUND = -2,
|
||||
CPRMAN_CLOCK_SRC_DSI0HSCK = -3,
|
||||
} CprmanPllChannel;
|
||||
|
||||
typedef enum CprmanClockMux {
|
||||
CPRMAN_CLOCK_GNRIC,
|
||||
CPRMAN_CLOCK_VPU,
|
||||
CPRMAN_CLOCK_SYS,
|
||||
CPRMAN_CLOCK_PERIA,
|
||||
CPRMAN_CLOCK_PERII,
|
||||
CPRMAN_CLOCK_H264,
|
||||
CPRMAN_CLOCK_ISP,
|
||||
CPRMAN_CLOCK_V3D,
|
||||
CPRMAN_CLOCK_CAM0,
|
||||
CPRMAN_CLOCK_CAM1,
|
||||
CPRMAN_CLOCK_CCP2,
|
||||
CPRMAN_CLOCK_DSI0E,
|
||||
CPRMAN_CLOCK_DSI0P,
|
||||
CPRMAN_CLOCK_DPI,
|
||||
CPRMAN_CLOCK_GP0,
|
||||
CPRMAN_CLOCK_GP1,
|
||||
CPRMAN_CLOCK_GP2,
|
||||
CPRMAN_CLOCK_HSM,
|
||||
CPRMAN_CLOCK_OTP,
|
||||
CPRMAN_CLOCK_PCM,
|
||||
CPRMAN_CLOCK_PWM,
|
||||
CPRMAN_CLOCK_SLIM,
|
||||
CPRMAN_CLOCK_SMI,
|
||||
CPRMAN_CLOCK_TEC,
|
||||
CPRMAN_CLOCK_TD0,
|
||||
CPRMAN_CLOCK_TD1,
|
||||
CPRMAN_CLOCK_TSENS,
|
||||
CPRMAN_CLOCK_TIMER,
|
||||
CPRMAN_CLOCK_UART,
|
||||
CPRMAN_CLOCK_VEC,
|
||||
CPRMAN_CLOCK_PULSE,
|
||||
CPRMAN_CLOCK_SDC,
|
||||
CPRMAN_CLOCK_ARM,
|
||||
CPRMAN_CLOCK_AVEO,
|
||||
CPRMAN_CLOCK_EMMC,
|
||||
CPRMAN_CLOCK_EMMC2,
|
||||
|
||||
CPRMAN_NUM_CLOCK_MUX
|
||||
} CprmanClockMux;
|
||||
|
||||
typedef enum CprmanClockMuxSource {
|
||||
CPRMAN_CLOCK_SRC_GND = 0,
|
||||
CPRMAN_CLOCK_SRC_XOSC,
|
||||
CPRMAN_CLOCK_SRC_TD0,
|
||||
CPRMAN_CLOCK_SRC_TD1,
|
||||
CPRMAN_CLOCK_SRC_PLLA,
|
||||
CPRMAN_CLOCK_SRC_PLLC,
|
||||
CPRMAN_CLOCK_SRC_PLLD,
|
||||
CPRMAN_CLOCK_SRC_PLLH,
|
||||
CPRMAN_CLOCK_SRC_PLLC_CORE1,
|
||||
CPRMAN_CLOCK_SRC_PLLC_CORE2,
|
||||
|
||||
CPRMAN_NUM_CLOCK_MUX_SRC
|
||||
} CprmanClockMuxSource;
|
||||
|
||||
typedef struct CprmanPllState {
|
||||
/*< private >*/
|
||||
DeviceState parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
CprmanPll id;
|
||||
|
||||
uint32_t *reg_cm;
|
||||
uint32_t *reg_a2w_ctrl;
|
||||
uint32_t *reg_a2w_ana; /* ANA[0] .. ANA[3] */
|
||||
uint32_t prediv_mask; /* prediv bit in ana[1] */
|
||||
uint32_t *reg_a2w_frac;
|
||||
|
||||
Clock *xosc_in;
|
||||
Clock *out;
|
||||
} CprmanPllState;
|
||||
|
||||
typedef struct CprmanPllChannelState {
|
||||
/*< private >*/
|
||||
DeviceState parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
CprmanPllChannel id;
|
||||
CprmanPll parent;
|
||||
|
||||
uint32_t *reg_cm;
|
||||
uint32_t hold_mask;
|
||||
uint32_t load_mask;
|
||||
uint32_t *reg_a2w_ctrl;
|
||||
int fixed_divider;
|
||||
|
||||
Clock *pll_in;
|
||||
Clock *out;
|
||||
} CprmanPllChannelState;
|
||||
|
||||
typedef struct CprmanClockMuxState {
|
||||
/*< private >*/
|
||||
DeviceState parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
CprmanClockMux id;
|
||||
|
||||
uint32_t *reg_ctl;
|
||||
uint32_t *reg_div;
|
||||
int int_bits;
|
||||
int frac_bits;
|
||||
|
||||
Clock *srcs[CPRMAN_NUM_CLOCK_MUX_SRC];
|
||||
Clock *out;
|
||||
|
||||
/*
|
||||
* Used by clock srcs update callback to retrieve both the clock and the
|
||||
* source number.
|
||||
*/
|
||||
struct CprmanClockMuxState *backref[CPRMAN_NUM_CLOCK_MUX_SRC];
|
||||
} CprmanClockMuxState;
|
||||
|
||||
typedef struct CprmanDsi0HsckMuxState {
|
||||
/*< private >*/
|
||||
DeviceState parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
CprmanClockMux id;
|
||||
|
||||
uint32_t *reg_cm;
|
||||
|
||||
Clock *plla_in;
|
||||
Clock *plld_in;
|
||||
Clock *out;
|
||||
} CprmanDsi0HsckMuxState;
|
||||
|
||||
struct BCM2835CprmanState {
|
||||
/*< private >*/
|
||||
SysBusDevice parent_obj;
|
||||
|
||||
/*< public >*/
|
||||
MemoryRegion iomem;
|
||||
|
||||
CprmanPllState plls[CPRMAN_NUM_PLL];
|
||||
CprmanPllChannelState channels[CPRMAN_NUM_PLL_CHANNEL];
|
||||
CprmanClockMuxState clock_muxes[CPRMAN_NUM_CLOCK_MUX];
|
||||
CprmanDsi0HsckMuxState dsi0hsck_mux;
|
||||
|
||||
uint32_t regs[CPRMAN_NUM_REGS];
|
||||
uint32_t xosc_freq;
|
||||
|
||||
Clock *xosc;
|
||||
Clock *gnd;
|
||||
};
|
||||
|
||||
#endif
|
1019
include/hw/misc/bcm2835_cprman_internals.h
Normal file
1019
include/hw/misc/bcm2835_cprman_internals.h
Normal file
File diff suppressed because it is too large
Load diff
|
@ -31,6 +31,8 @@
|
|||
*/
|
||||
#define NPCM7XX_CLK_NR_REGS (0x70 / sizeof(uint32_t))
|
||||
|
||||
#define NPCM7XX_WATCHDOG_RESET_GPIO_IN "npcm7xx-clk-watchdog-reset-gpio-in"
|
||||
|
||||
typedef struct NPCM7xxCLKState {
|
||||
SysBusDevice parent;
|
||||
|
||||
|
|
34
include/hw/misc/npcm7xx_rng.h
Normal file
34
include/hw/misc/npcm7xx_rng.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Nuvoton NPCM7xx Random Number Generator.
|
||||
*
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
#ifndef NPCM7XX_RNG_H
|
||||
#define NPCM7XX_RNG_H
|
||||
|
||||
#include "hw/sysbus.h"
|
||||
|
||||
typedef struct NPCM7xxRNGState {
|
||||
SysBusDevice parent;
|
||||
|
||||
MemoryRegion iomem;
|
||||
|
||||
uint8_t rngcs;
|
||||
uint8_t rngd;
|
||||
uint8_t rngmode;
|
||||
} NPCM7xxRNGState;
|
||||
|
||||
#define TYPE_NPCM7XX_RNG "npcm7xx-rng"
|
||||
#define NPCM7XX_RNG(obj) OBJECT_CHECK(NPCM7xxRNGState, (obj), TYPE_NPCM7XX_RNG)
|
||||
|
||||
#endif /* NPCM7XX_RNG_H */
|
Loading…
Add table
Add a link
Reference in a new issue