mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200616' into staging
* hw: arm: Set vendor property for IMX SDHCI emulations * sd: sdhci: Implement basic vendor specific register support * hw/net/imx_fec: Convert debug fprintf() to trace events * target/arm/cpu: adjust virtual time for all KVM arm cpus * Implement configurable descriptor size in ftgmac100 * hw/misc/imx6ul_ccm: Implement non writable bits in CCM registers * target/arm: More Neon decodetree conversion work # gpg: Signature made Tue 16 Jun 2020 10:56:10 BST # 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-20200616: (23 commits) hw: arm: Set vendor property for IMX SDHCI emulations sd: sdhci: Implement basic vendor specific register support hw/net/imx_fec: Convert debug fprintf() to trace events target/arm/cpu: adjust virtual time for all KVM arm cpus Implement configurable descriptor size in ftgmac100 hw/misc/imx6ul_ccm: Implement non writable bits in CCM registers target/arm: Convert Neon VDUP (scalar) to decodetree target/arm: Convert Neon VTBL, VTBX to decodetree target/arm: Convert Neon VEXT to decodetree target/arm: Convert Neon 2-reg-scalar long multiplies to decodetree target/arm: Convert Neon 2-reg-scalar VQRDMLAH, VQRDMLSH to decodetree target/arm: Convert Neon 2-reg-scalar VQDMULH, VQRDMULH to decodetree target/arm: Convert Neon 2-reg-scalar float multiplies to decodetree target/arm: Convert Neon 2-reg-scalar integer multiplies to decodetree target/arm: Add missing TCG temp free in do_2shift_env_64() target/arm: Add 'static' and 'const' annotations to VSHLL function arrays target/arm: Convert Neon 3-reg-diff polynomial VMULL target/arm: Convert Neon 3-reg-diff saturating doubling multiplies target/arm: Convert Neon 3-reg-diff long multiplies target/arm: Convert Neon 3-reg-diff VABAL, VABDL to decodetree ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org> # Conflicts: # hw/arm/fsl-imx25.c # hw/arm/fsl-imx6.c # hw/arm/fsl-imx6ul.c # hw/arm/fsl-imx7.c
This commit is contained in:
@@ -263,6 +263,12 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
||||
&err);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), IMX25_ESDHC_CAPABILITIES,
|
||||
"capareg", &err);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), SDHCI_VENDOR_IMX,
|
||||
"vendor", &err);
|
||||
if (err) {
|
||||
error_propagate(errp, err);
|
||||
return;
|
||||
}
|
||||
sysbus_realize(SYS_BUS_DEVICE(&s->esdhc[i]), &err);
|
||||
if (err) {
|
||||
error_propagate(errp, err);
|
||||
|
||||
@@ -339,6 +339,12 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
||||
&err);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), IMX6_ESDHC_CAPABILITIES,
|
||||
"capareg", &err);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), SDHCI_VENDOR_IMX,
|
||||
"vendor", &err);
|
||||
if (err) {
|
||||
error_propagate(errp, err);
|
||||
return;
|
||||
}
|
||||
sysbus_realize(SYS_BUS_DEVICE(&s->esdhc[i]), &err);
|
||||
if (err) {
|
||||
error_propagate(errp, err);
|
||||
|
||||
@@ -479,6 +479,8 @@ static void fsl_imx6ul_realize(DeviceState *dev, Error **errp)
|
||||
FSL_IMX6UL_USDHC2_IRQ,
|
||||
};
|
||||
|
||||
object_property_set_uint(OBJECT(&s->usdhc[i]), SDHCI_VENDOR_IMX,
|
||||
"vendor", &error_abort);
|
||||
sysbus_realize(SYS_BUS_DEVICE(&s->usdhc[i]), &error_abort);
|
||||
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(&s->usdhc[i]), 0,
|
||||
|
||||
@@ -393,6 +393,8 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
|
||||
FSL_IMX7_USDHC3_IRQ,
|
||||
};
|
||||
|
||||
object_property_set_uint(OBJECT(&s->usdhc[i]), SDHCI_VENDOR_IMX,
|
||||
"vendor", &error_abort);
|
||||
sysbus_realize(SYS_BUS_DEVICE(&s->usdhc[i]), &error_abort);
|
||||
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(&s->usdhc[i]), 0,
|
||||
|
||||
+63
-13
@@ -19,6 +19,62 @@
|
||||
|
||||
#include "trace.h"
|
||||
|
||||
static const uint32_t ccm_mask[CCM_MAX] = {
|
||||
[CCM_CCR] = 0xf01fef80,
|
||||
[CCM_CCDR] = 0xfffeffff,
|
||||
[CCM_CSR] = 0xffffffff,
|
||||
[CCM_CCSR] = 0xfffffef2,
|
||||
[CCM_CACRR] = 0xfffffff8,
|
||||
[CCM_CBCDR] = 0xc1f8e000,
|
||||
[CCM_CBCMR] = 0xfc03cfff,
|
||||
[CCM_CSCMR1] = 0x80700000,
|
||||
[CCM_CSCMR2] = 0xe01ff003,
|
||||
[CCM_CSCDR1] = 0xfe00c780,
|
||||
[CCM_CS1CDR] = 0xfe00fe00,
|
||||
[CCM_CS2CDR] = 0xf8007000,
|
||||
[CCM_CDCDR] = 0xf00fffff,
|
||||
[CCM_CHSCCDR] = 0xfffc01ff,
|
||||
[CCM_CSCDR2] = 0xfe0001ff,
|
||||
[CCM_CSCDR3] = 0xffffc1ff,
|
||||
[CCM_CDHIPR] = 0xffffffff,
|
||||
[CCM_CTOR] = 0x00000000,
|
||||
[CCM_CLPCR] = 0xf39ff01c,
|
||||
[CCM_CISR] = 0xfb85ffbe,
|
||||
[CCM_CIMR] = 0xfb85ffbf,
|
||||
[CCM_CCOSR] = 0xfe00fe00,
|
||||
[CCM_CGPR] = 0xfffc3fea,
|
||||
[CCM_CCGR0] = 0x00000000,
|
||||
[CCM_CCGR1] = 0x00000000,
|
||||
[CCM_CCGR2] = 0x00000000,
|
||||
[CCM_CCGR3] = 0x00000000,
|
||||
[CCM_CCGR4] = 0x00000000,
|
||||
[CCM_CCGR5] = 0x00000000,
|
||||
[CCM_CCGR6] = 0x00000000,
|
||||
[CCM_CMEOR] = 0xafffff1f,
|
||||
};
|
||||
|
||||
static const uint32_t analog_mask[CCM_ANALOG_MAX] = {
|
||||
[CCM_ANALOG_PLL_ARM] = 0xfff60f80,
|
||||
[CCM_ANALOG_PLL_USB1] = 0xfffe0fbc,
|
||||
[CCM_ANALOG_PLL_USB2] = 0xfffe0fbc,
|
||||
[CCM_ANALOG_PLL_SYS] = 0xfffa0ffe,
|
||||
[CCM_ANALOG_PLL_SYS_SS] = 0x00000000,
|
||||
[CCM_ANALOG_PLL_SYS_NUM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_SYS_DENOM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_AUDIO] = 0xffe20f80,
|
||||
[CCM_ANALOG_PLL_AUDIO_NUM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_AUDIO_DENOM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_VIDEO] = 0xffe20f80,
|
||||
[CCM_ANALOG_PLL_VIDEO_NUM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_VIDEO_DENOM] = 0xc0000000,
|
||||
[CCM_ANALOG_PLL_ENET] = 0xffc20ff0,
|
||||
[CCM_ANALOG_PFD_480] = 0x40404040,
|
||||
[CCM_ANALOG_PFD_528] = 0x40404040,
|
||||
[PMU_MISC0] = 0x01fe8306,
|
||||
[PMU_MISC1] = 0x07fcede0,
|
||||
[PMU_MISC2] = 0x005f5f5f,
|
||||
};
|
||||
|
||||
static const char *imx6ul_ccm_reg_name(uint32_t reg)
|
||||
{
|
||||
static char unknown[20];
|
||||
@@ -596,11 +652,8 @@ static void imx6ul_ccm_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
|
||||
trace_ccm_write_reg(imx6ul_ccm_reg_name(index), (uint32_t)value);
|
||||
|
||||
/*
|
||||
* We will do a better implementation later. In particular some bits
|
||||
* cannot be written to.
|
||||
*/
|
||||
s->ccm[index] = (uint32_t)value;
|
||||
s->ccm[index] = (s->ccm[index] & ccm_mask[index]) |
|
||||
((uint32_t)value & ~ccm_mask[index]);
|
||||
}
|
||||
|
||||
static uint64_t imx6ul_analog_read(void *opaque, hwaddr offset, unsigned size)
|
||||
@@ -737,7 +790,7 @@ static void imx6ul_analog_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
* the REG_NAME register. So we change the value of the
|
||||
* REG_NAME register, setting bits passed in the value.
|
||||
*/
|
||||
s->analog[index - 1] |= value;
|
||||
s->analog[index - 1] |= (value & ~analog_mask[index - 1]);
|
||||
break;
|
||||
case CCM_ANALOG_PLL_ARM_CLR:
|
||||
case CCM_ANALOG_PLL_USB1_CLR:
|
||||
@@ -762,7 +815,7 @@ static void imx6ul_analog_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
* the REG_NAME register. So we change the value of the
|
||||
* REG_NAME register, unsetting bits passed in the value.
|
||||
*/
|
||||
s->analog[index - 2] &= ~value;
|
||||
s->analog[index - 2] &= ~(value & ~analog_mask[index - 2]);
|
||||
break;
|
||||
case CCM_ANALOG_PLL_ARM_TOG:
|
||||
case CCM_ANALOG_PLL_USB1_TOG:
|
||||
@@ -787,14 +840,11 @@ static void imx6ul_analog_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
* the REG_NAME register. So we change the value of the
|
||||
* REG_NAME register, toggling bits passed in the value.
|
||||
*/
|
||||
s->analog[index - 3] ^= value;
|
||||
s->analog[index - 3] ^= (value & ~analog_mask[index - 3]);
|
||||
break;
|
||||
default:
|
||||
/*
|
||||
* We will do a better implementation later. In particular some bits
|
||||
* cannot be written to.
|
||||
*/
|
||||
s->analog[index] = value;
|
||||
s->analog[index] = (s->analog[index] & analog_mask[index]) |
|
||||
(value & ~analog_mask[index]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
+24
-2
@@ -79,6 +79,16 @@
|
||||
#define FTGMAC100_APTC_TXPOLL_CNT(x) (((x) >> 8) & 0xf)
|
||||
#define FTGMAC100_APTC_TXPOLL_TIME_SEL (1 << 12)
|
||||
|
||||
/*
|
||||
* DMA burst length and arbitration control register
|
||||
*/
|
||||
#define FTGMAC100_DBLAC_RXBURST_SIZE(x) (((x) >> 8) & 0x3)
|
||||
#define FTGMAC100_DBLAC_TXBURST_SIZE(x) (((x) >> 10) & 0x3)
|
||||
#define FTGMAC100_DBLAC_RXDES_SIZE(x) ((((x) >> 12) & 0xf) * 8)
|
||||
#define FTGMAC100_DBLAC_TXDES_SIZE(x) ((((x) >> 16) & 0xf) * 8)
|
||||
#define FTGMAC100_DBLAC_IFG_CNT(x) (((x) >> 20) & 0x7)
|
||||
#define FTGMAC100_DBLAC_IFG_INC (1 << 23)
|
||||
|
||||
/*
|
||||
* PHY control register
|
||||
*/
|
||||
@@ -553,7 +563,7 @@ static void ftgmac100_do_tx(FTGMAC100State *s, uint32_t tx_ring,
|
||||
if (bd.des0 & s->txdes0_edotr) {
|
||||
addr = tx_ring;
|
||||
} else {
|
||||
addr += sizeof(FTGMAC100Desc);
|
||||
addr += FTGMAC100_DBLAC_TXDES_SIZE(s->dblac);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -800,6 +810,18 @@ static void ftgmac100_write(void *opaque, hwaddr addr,
|
||||
s->phydata = value & 0xffff;
|
||||
break;
|
||||
case FTGMAC100_DBLAC: /* DMA Burst Length and Arbitration Control */
|
||||
if (FTGMAC100_DBLAC_TXDES_SIZE(s->dblac) < sizeof(FTGMAC100Desc)) {
|
||||
qemu_log_mask(LOG_GUEST_ERROR,
|
||||
"%s: transmit descriptor too small : %d bytes\n",
|
||||
__func__, FTGMAC100_DBLAC_TXDES_SIZE(s->dblac));
|
||||
break;
|
||||
}
|
||||
if (FTGMAC100_DBLAC_RXDES_SIZE(s->dblac) < sizeof(FTGMAC100Desc)) {
|
||||
qemu_log_mask(LOG_GUEST_ERROR,
|
||||
"%s: receive descriptor too small : %d bytes\n",
|
||||
__func__, FTGMAC100_DBLAC_RXDES_SIZE(s->dblac));
|
||||
break;
|
||||
}
|
||||
s->dblac = value;
|
||||
break;
|
||||
case FTGMAC100_REVR: /* Feature Register */
|
||||
@@ -982,7 +1004,7 @@ static ssize_t ftgmac100_receive(NetClientState *nc, const uint8_t *buf,
|
||||
if (bd.des0 & s->rxdes0_edorr) {
|
||||
addr = s->rx_ring;
|
||||
} else {
|
||||
addr += sizeof(FTGMAC100Desc);
|
||||
addr += FTGMAC100_DBLAC_RXDES_SIZE(s->dblac);
|
||||
}
|
||||
}
|
||||
s->rx_descriptor = addr;
|
||||
|
||||
+45
-61
@@ -31,34 +31,11 @@
|
||||
#include "qemu/module.h"
|
||||
#include "net/checksum.h"
|
||||
#include "net/eth.h"
|
||||
#include "trace.h"
|
||||
|
||||
/* For crc32 */
|
||||
#include <zlib.h>
|
||||
|
||||
#ifndef DEBUG_IMX_FEC
|
||||
#define DEBUG_IMX_FEC 0
|
||||
#endif
|
||||
|
||||
#define FEC_PRINTF(fmt, args...) \
|
||||
do { \
|
||||
if (DEBUG_IMX_FEC) { \
|
||||
fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_FEC, \
|
||||
__func__, ##args); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#ifndef DEBUG_IMX_PHY
|
||||
#define DEBUG_IMX_PHY 0
|
||||
#endif
|
||||
|
||||
#define PHY_PRINTF(fmt, args...) \
|
||||
do { \
|
||||
if (DEBUG_IMX_PHY) { \
|
||||
fprintf(stderr, "[%s.phy]%s: " fmt , TYPE_IMX_FEC, \
|
||||
__func__, ##args); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define IMX_MAX_DESC 1024
|
||||
|
||||
static const char *imx_default_reg_name(IMXFECState *s, uint32_t index)
|
||||
@@ -262,43 +239,45 @@ static void imx_eth_update(IMXFECState *s);
|
||||
* For now we don't handle any GPIO/interrupt line, so the OS will
|
||||
* have to poll for the PHY status.
|
||||
*/
|
||||
static void phy_update_irq(IMXFECState *s)
|
||||
static void imx_phy_update_irq(IMXFECState *s)
|
||||
{
|
||||
imx_eth_update(s);
|
||||
}
|
||||
|
||||
static void phy_update_link(IMXFECState *s)
|
||||
static void imx_phy_update_link(IMXFECState *s)
|
||||
{
|
||||
/* Autonegotiation status mirrors link status. */
|
||||
if (qemu_get_queue(s->nic)->link_down) {
|
||||
PHY_PRINTF("link is down\n");
|
||||
trace_imx_phy_update_link("down");
|
||||
s->phy_status &= ~0x0024;
|
||||
s->phy_int |= PHY_INT_DOWN;
|
||||
} else {
|
||||
PHY_PRINTF("link is up\n");
|
||||
trace_imx_phy_update_link("up");
|
||||
s->phy_status |= 0x0024;
|
||||
s->phy_int |= PHY_INT_ENERGYON;
|
||||
s->phy_int |= PHY_INT_AUTONEG_COMPLETE;
|
||||
}
|
||||
phy_update_irq(s);
|
||||
imx_phy_update_irq(s);
|
||||
}
|
||||
|
||||
static void imx_eth_set_link(NetClientState *nc)
|
||||
{
|
||||
phy_update_link(IMX_FEC(qemu_get_nic_opaque(nc)));
|
||||
imx_phy_update_link(IMX_FEC(qemu_get_nic_opaque(nc)));
|
||||
}
|
||||
|
||||
static void phy_reset(IMXFECState *s)
|
||||
static void imx_phy_reset(IMXFECState *s)
|
||||
{
|
||||
trace_imx_phy_reset();
|
||||
|
||||
s->phy_status = 0x7809;
|
||||
s->phy_control = 0x3000;
|
||||
s->phy_advertise = 0x01e1;
|
||||
s->phy_int_mask = 0;
|
||||
s->phy_int = 0;
|
||||
phy_update_link(s);
|
||||
imx_phy_update_link(s);
|
||||
}
|
||||
|
||||
static uint32_t do_phy_read(IMXFECState *s, int reg)
|
||||
static uint32_t imx_phy_read(IMXFECState *s, int reg)
|
||||
{
|
||||
uint32_t val;
|
||||
|
||||
@@ -332,7 +311,7 @@ static uint32_t do_phy_read(IMXFECState *s, int reg)
|
||||
case 29: /* Interrupt source. */
|
||||
val = s->phy_int;
|
||||
s->phy_int = 0;
|
||||
phy_update_irq(s);
|
||||
imx_phy_update_irq(s);
|
||||
break;
|
||||
case 30: /* Interrupt mask */
|
||||
val = s->phy_int_mask;
|
||||
@@ -352,14 +331,14 @@ static uint32_t do_phy_read(IMXFECState *s, int reg)
|
||||
break;
|
||||
}
|
||||
|
||||
PHY_PRINTF("read 0x%04x @ %d\n", val, reg);
|
||||
trace_imx_phy_read(val, reg);
|
||||
|
||||
return val;
|
||||
}
|
||||
|
||||
static void do_phy_write(IMXFECState *s, int reg, uint32_t val)
|
||||
static void imx_phy_write(IMXFECState *s, int reg, uint32_t val)
|
||||
{
|
||||
PHY_PRINTF("write 0x%04x @ %d\n", val, reg);
|
||||
trace_imx_phy_write(val, reg);
|
||||
|
||||
if (reg > 31) {
|
||||
/* we only advertise one phy */
|
||||
@@ -369,7 +348,7 @@ static void do_phy_write(IMXFECState *s, int reg, uint32_t val)
|
||||
switch (reg) {
|
||||
case 0: /* Basic Control */
|
||||
if (val & 0x8000) {
|
||||
phy_reset(s);
|
||||
imx_phy_reset(s);
|
||||
} else {
|
||||
s->phy_control = val & 0x7980;
|
||||
/* Complete autonegotiation immediately. */
|
||||
@@ -383,7 +362,7 @@ static void do_phy_write(IMXFECState *s, int reg, uint32_t val)
|
||||
break;
|
||||
case 30: /* Interrupt mask */
|
||||
s->phy_int_mask = val & 0xff;
|
||||
phy_update_irq(s);
|
||||
imx_phy_update_irq(s);
|
||||
break;
|
||||
case 17:
|
||||
case 18:
|
||||
@@ -402,6 +381,8 @@ static void do_phy_write(IMXFECState *s, int reg, uint32_t val)
|
||||
static void imx_fec_read_bd(IMXFECBufDesc *bd, dma_addr_t addr)
|
||||
{
|
||||
dma_memory_read(&address_space_memory, addr, bd, sizeof(*bd));
|
||||
|
||||
trace_imx_fec_read_bd(addr, bd->flags, bd->length, bd->data);
|
||||
}
|
||||
|
||||
static void imx_fec_write_bd(IMXFECBufDesc *bd, dma_addr_t addr)
|
||||
@@ -412,6 +393,9 @@ static void imx_fec_write_bd(IMXFECBufDesc *bd, dma_addr_t addr)
|
||||
static void imx_enet_read_bd(IMXENETBufDesc *bd, dma_addr_t addr)
|
||||
{
|
||||
dma_memory_read(&address_space_memory, addr, bd, sizeof(*bd));
|
||||
|
||||
trace_imx_enet_read_bd(addr, bd->flags, bd->length, bd->data,
|
||||
bd->option, bd->status);
|
||||
}
|
||||
|
||||
static void imx_enet_write_bd(IMXENETBufDesc *bd, dma_addr_t addr)
|
||||
@@ -471,11 +455,11 @@ static void imx_fec_do_tx(IMXFECState *s)
|
||||
int len;
|
||||
|
||||
imx_fec_read_bd(&bd, addr);
|
||||
FEC_PRINTF("tx_bd %x flags %04x len %d data %08x\n",
|
||||
addr, bd.flags, bd.length, bd.data);
|
||||
if ((bd.flags & ENET_BD_R) == 0) {
|
||||
|
||||
/* Run out of descriptors to transmit. */
|
||||
FEC_PRINTF("tx_bd ran out of descriptors to transmit\n");
|
||||
trace_imx_eth_tx_bd_busy();
|
||||
|
||||
break;
|
||||
}
|
||||
len = bd.length;
|
||||
@@ -552,11 +536,11 @@ static void imx_enet_do_tx(IMXFECState *s, uint32_t index)
|
||||
int len;
|
||||
|
||||
imx_enet_read_bd(&bd, addr);
|
||||
FEC_PRINTF("tx_bd %x flags %04x len %d data %08x option %04x "
|
||||
"status %04x\n", addr, bd.flags, bd.length, bd.data,
|
||||
bd.option, bd.status);
|
||||
if ((bd.flags & ENET_BD_R) == 0) {
|
||||
/* Run out of descriptors to transmit. */
|
||||
|
||||
trace_imx_eth_tx_bd_busy();
|
||||
|
||||
break;
|
||||
}
|
||||
len = bd.length;
|
||||
@@ -633,7 +617,7 @@ static void imx_eth_enable_rx(IMXFECState *s, bool flush)
|
||||
s->regs[ENET_RDAR] = (bd.flags & ENET_BD_E) ? ENET_RDAR_RDAR : 0;
|
||||
|
||||
if (!s->regs[ENET_RDAR]) {
|
||||
FEC_PRINTF("RX buffer full\n");
|
||||
trace_imx_eth_rx_bd_full();
|
||||
} else if (flush) {
|
||||
qemu_flush_queued_packets(qemu_get_queue(s->nic));
|
||||
}
|
||||
@@ -676,7 +660,7 @@ static void imx_eth_reset(DeviceState *d)
|
||||
memset(s->tx_descriptor, 0, sizeof(s->tx_descriptor));
|
||||
|
||||
/* We also reset the PHY */
|
||||
phy_reset(s);
|
||||
imx_phy_reset(s);
|
||||
}
|
||||
|
||||
static uint32_t imx_default_read(IMXFECState *s, uint32_t index)
|
||||
@@ -774,8 +758,7 @@ static uint64_t imx_eth_read(void *opaque, hwaddr offset, unsigned size)
|
||||
break;
|
||||
}
|
||||
|
||||
FEC_PRINTF("reg[%s] => 0x%" PRIx32 "\n", imx_eth_reg_name(s, index),
|
||||
value);
|
||||
trace_imx_eth_read(index, imx_eth_reg_name(s, index), value);
|
||||
|
||||
return value;
|
||||
}
|
||||
@@ -884,8 +867,7 @@ static void imx_eth_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
const bool single_tx_ring = !imx_eth_is_multi_tx_ring(s);
|
||||
uint32_t index = offset >> 2;
|
||||
|
||||
FEC_PRINTF("reg[%s] <= 0x%" PRIx32 "\n", imx_eth_reg_name(s, index),
|
||||
(uint32_t)value);
|
||||
trace_imx_eth_write(index, imx_eth_reg_name(s, index), value);
|
||||
|
||||
switch (index) {
|
||||
case ENET_EIR:
|
||||
@@ -940,12 +922,12 @@ static void imx_eth_write(void *opaque, hwaddr offset, uint64_t value,
|
||||
if (extract32(value, 29, 1)) {
|
||||
/* This is a read operation */
|
||||
s->regs[ENET_MMFR] = deposit32(s->regs[ENET_MMFR], 0, 16,
|
||||
do_phy_read(s,
|
||||
imx_phy_read(s,
|
||||
extract32(value,
|
||||
18, 10)));
|
||||
} else {
|
||||
/* This a write operation */
|
||||
do_phy_write(s, extract32(value, 18, 10), extract32(value, 0, 16));
|
||||
imx_phy_write(s, extract32(value, 18, 10), extract32(value, 0, 16));
|
||||
}
|
||||
/* raise the interrupt as the PHY operation is done */
|
||||
s->regs[ENET_EIR] |= ENET_INT_MII;
|
||||
@@ -1053,8 +1035,6 @@ static bool imx_eth_can_receive(NetClientState *nc)
|
||||
{
|
||||
IMXFECState *s = IMX_FEC(qemu_get_nic_opaque(nc));
|
||||
|
||||
FEC_PRINTF("\n");
|
||||
|
||||
return !!s->regs[ENET_RDAR];
|
||||
}
|
||||
|
||||
@@ -1071,7 +1051,7 @@ static ssize_t imx_fec_receive(NetClientState *nc, const uint8_t *buf,
|
||||
unsigned int buf_len;
|
||||
size_t size = len;
|
||||
|
||||
FEC_PRINTF("len %d\n", (int)size);
|
||||
trace_imx_fec_receive(size);
|
||||
|
||||
if (!s->regs[ENET_RDAR]) {
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Unexpected packet\n",
|
||||
@@ -1113,7 +1093,7 @@ static ssize_t imx_fec_receive(NetClientState *nc, const uint8_t *buf,
|
||||
bd.length = buf_len;
|
||||
size -= buf_len;
|
||||
|
||||
FEC_PRINTF("rx_bd 0x%x length %d\n", addr, bd.length);
|
||||
trace_imx_fec_receive_len(addr, bd.length);
|
||||
|
||||
/* The last 4 bytes are the CRC. */
|
||||
if (size < 4) {
|
||||
@@ -1131,7 +1111,9 @@ static ssize_t imx_fec_receive(NetClientState *nc, const uint8_t *buf,
|
||||
if (size == 0) {
|
||||
/* Last buffer in frame. */
|
||||
bd.flags |= flags | ENET_BD_L;
|
||||
FEC_PRINTF("rx frame flags %04x\n", bd.flags);
|
||||
|
||||
trace_imx_fec_receive_last(bd.flags);
|
||||
|
||||
s->regs[ENET_EIR] |= ENET_INT_RXF;
|
||||
} else {
|
||||
s->regs[ENET_EIR] |= ENET_INT_RXB;
|
||||
@@ -1164,7 +1146,7 @@ static ssize_t imx_enet_receive(NetClientState *nc, const uint8_t *buf,
|
||||
size_t size = len;
|
||||
bool shift16 = s->regs[ENET_RACC] & ENET_RACC_SHIFT16;
|
||||
|
||||
FEC_PRINTF("len %d\n", (int)size);
|
||||
trace_imx_enet_receive(size);
|
||||
|
||||
if (!s->regs[ENET_RDAR]) {
|
||||
qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Unexpected packet\n",
|
||||
@@ -1210,7 +1192,7 @@ static ssize_t imx_enet_receive(NetClientState *nc, const uint8_t *buf,
|
||||
bd.length = buf_len;
|
||||
size -= buf_len;
|
||||
|
||||
FEC_PRINTF("rx_bd 0x%x length %d\n", addr, bd.length);
|
||||
trace_imx_enet_receive_len(addr, bd.length);
|
||||
|
||||
/* The last 4 bytes are the CRC. */
|
||||
if (size < 4) {
|
||||
@@ -1246,7 +1228,9 @@ static ssize_t imx_enet_receive(NetClientState *nc, const uint8_t *buf,
|
||||
if (size == 0) {
|
||||
/* Last buffer in frame. */
|
||||
bd.flags |= flags | ENET_BD_L;
|
||||
FEC_PRINTF("rx frame flags %04x\n", bd.flags);
|
||||
|
||||
trace_imx_enet_receive_last(bd.flags);
|
||||
|
||||
/* Indicate that we've updated the last buffer descriptor. */
|
||||
bd.last_buffer = ENET_BD_BDU;
|
||||
if (bd.option & ENET_BD_RX_INT) {
|
||||
|
||||
@@ -408,3 +408,21 @@ i82596_receive_packet(size_t sz) "len=%zu"
|
||||
i82596_new_mac(const char *id_with_mac) "New MAC for: %s"
|
||||
i82596_set_multicast(uint16_t count) "Added %d multicast entries"
|
||||
i82596_channel_attention(void *s) "%p: Received CHANNEL ATTENTION"
|
||||
|
||||
# imx_fec.c
|
||||
imx_phy_read(uint32_t val, int reg) "0x%04"PRIx32" <= reg[%d]"
|
||||
imx_phy_write(uint32_t val, int reg) "0x%04"PRIx32" => reg[%d]"
|
||||
imx_phy_update_link(const char *s) "%s"
|
||||
imx_phy_reset(void) ""
|
||||
imx_fec_read_bd(uint64_t addr, int flags, int len, int data) "tx_bd 0x%"PRIx64" flags 0x%04x len %d data 0x%08x"
|
||||
imx_enet_read_bd(uint64_t addr, int flags, int len, int data, int options, int status) "tx_bd 0x%"PRIx64" flags 0x%04x len %d data 0x%08x option 0x%04x status 0x%04x"
|
||||
imx_eth_tx_bd_busy(void) "tx_bd ran out of descriptors to transmit"
|
||||
imx_eth_rx_bd_full(void) "RX buffer is full"
|
||||
imx_eth_read(int reg, const char *reg_name, uint32_t value) "reg[%d:%s] => 0x%08"PRIx32
|
||||
imx_eth_write(int reg, const char *reg_name, uint64_t value) "reg[%d:%s] <= 0x%08"PRIx64
|
||||
imx_fec_receive(size_t size) "len %zu"
|
||||
imx_fec_receive_len(uint64_t addr, int len) "rx_bd 0x%"PRIx64" length %d"
|
||||
imx_fec_receive_last(int last) "rx frame flags 0x%04x"
|
||||
imx_enet_receive(size_t size) "len %zu"
|
||||
imx_enet_receive_len(uint64_t addr, int len) "rx_bd 0x%"PRIx64" length %d"
|
||||
imx_enet_receive_last(int last) "rx frame flags 0x%04x"
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
#define SDHC_CMD_INHIBIT 0x00000001
|
||||
#define SDHC_DATA_INHIBIT 0x00000002
|
||||
#define SDHC_DAT_LINE_ACTIVE 0x00000004
|
||||
#define SDHC_IMX_CLOCK_GATE_OFF 0x00000080
|
||||
#define SDHC_DOING_WRITE 0x00000100
|
||||
#define SDHC_DOING_READ 0x00000200
|
||||
#define SDHC_SPACE_AVAILABLE 0x00000400
|
||||
@@ -289,7 +290,10 @@ extern const VMStateDescription sdhci_vmstate;
|
||||
|
||||
|
||||
#define ESDHC_MIX_CTRL 0x48
|
||||
|
||||
#define ESDHC_VENDOR_SPEC 0xc0
|
||||
#define ESDHC_IMX_FRC_SDCLK_ON (1 << 8)
|
||||
|
||||
#define ESDHC_DLL_CTRL 0x60
|
||||
|
||||
#define ESDHC_TUNING_CTRL 0xcc
|
||||
@@ -326,6 +330,7 @@ extern const VMStateDescription sdhci_vmstate;
|
||||
#define DEFINE_SDHCI_COMMON_PROPERTIES(_state) \
|
||||
DEFINE_PROP_UINT8("sd-spec-version", _state, sd_spec_version, 2), \
|
||||
DEFINE_PROP_UINT8("uhs", _state, uhs_mode, UHS_NOT_SUPPORTED), \
|
||||
DEFINE_PROP_UINT8("vendor", _state, vendor, SDHCI_VENDOR_NONE), \
|
||||
\
|
||||
/* Capabilities registers provide information on supported
|
||||
* features of this specific host controller implementation */ \
|
||||
|
||||
+17
-1
@@ -1569,11 +1569,13 @@ static uint64_t usdhc_read(void *opaque, hwaddr offset, unsigned size)
|
||||
}
|
||||
break;
|
||||
|
||||
case ESDHC_VENDOR_SPEC:
|
||||
ret = s->vendor_spec;
|
||||
break;
|
||||
case ESDHC_DLL_CTRL:
|
||||
case ESDHC_TUNE_CTRL_STATUS:
|
||||
case ESDHC_UNDOCUMENTED_REG27:
|
||||
case ESDHC_TUNING_CTRL:
|
||||
case ESDHC_VENDOR_SPEC:
|
||||
case ESDHC_MIX_CTRL:
|
||||
case ESDHC_WTMK_LVL:
|
||||
ret = 0;
|
||||
@@ -1596,7 +1598,21 @@ usdhc_write(void *opaque, hwaddr offset, uint64_t val, unsigned size)
|
||||
case ESDHC_UNDOCUMENTED_REG27:
|
||||
case ESDHC_TUNING_CTRL:
|
||||
case ESDHC_WTMK_LVL:
|
||||
break;
|
||||
|
||||
case ESDHC_VENDOR_SPEC:
|
||||
s->vendor_spec = value;
|
||||
switch (s->vendor) {
|
||||
case SDHCI_VENDOR_IMX:
|
||||
if (value & ESDHC_IMX_FRC_SDCLK_ON) {
|
||||
s->prnsts &= ~SDHC_IMX_CLOCK_GATE_OFF;
|
||||
} else {
|
||||
s->prnsts |= SDHC_IMX_CLOCK_GATE_OFF;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
case SDHC_HOSTCTL:
|
||||
|
||||
@@ -74,6 +74,7 @@ typedef struct SDHCIState {
|
||||
uint16_t acmd12errsts; /* Auto CMD12 error status register */
|
||||
uint16_t hostctl2; /* Host Control 2 */
|
||||
uint64_t admasysaddr; /* ADMA System Address Register */
|
||||
uint16_t vendor_spec; /* Vendor specific register */
|
||||
|
||||
/* Read-only registers */
|
||||
uint64_t capareg; /* Capabilities Register */
|
||||
@@ -96,8 +97,12 @@ typedef struct SDHCIState {
|
||||
uint32_t quirks;
|
||||
uint8_t sd_spec_version;
|
||||
uint8_t uhs_mode;
|
||||
uint8_t vendor; /* For vendor specific functionality */
|
||||
} SDHCIState;
|
||||
|
||||
#define SDHCI_VENDOR_NONE 0
|
||||
#define SDHCI_VENDOR_IMX 1
|
||||
|
||||
/*
|
||||
* Controller does not provide transfer-complete interrupt when not
|
||||
* busy.
|
||||
|
||||
+4
-2
@@ -1245,6 +1245,10 @@ void arm_cpu_post_init(Object *obj)
|
||||
if (arm_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER)) {
|
||||
qdev_property_add_static(DEVICE(cpu), &arm_cpu_gt_cntfrq_property);
|
||||
}
|
||||
|
||||
if (kvm_enabled()) {
|
||||
kvm_arm_add_vcpu_properties(obj);
|
||||
}
|
||||
}
|
||||
|
||||
static void arm_cpu_finalizefn(Object *obj)
|
||||
@@ -2029,7 +2033,6 @@ static void arm_max_initfn(Object *obj)
|
||||
|
||||
if (kvm_enabled()) {
|
||||
kvm_arm_set_cpu_features_from_host(cpu);
|
||||
kvm_arm_add_vcpu_properties(obj);
|
||||
} else {
|
||||
cortex_a15_initfn(obj);
|
||||
|
||||
@@ -2183,7 +2186,6 @@ static void arm_host_initfn(Object *obj)
|
||||
if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
|
||||
aarch64_add_sve_properties(obj);
|
||||
}
|
||||
kvm_arm_add_vcpu_properties(obj);
|
||||
arm_cpu_post_init(obj);
|
||||
}
|
||||
|
||||
|
||||
@@ -592,7 +592,6 @@ static void aarch64_max_initfn(Object *obj)
|
||||
|
||||
if (kvm_enabled()) {
|
||||
kvm_arm_set_cpu_features_from_host(cpu);
|
||||
kvm_arm_add_vcpu_properties(obj);
|
||||
} else {
|
||||
uint64_t t;
|
||||
uint32_t u;
|
||||
|
||||
+11
-10
@@ -194,17 +194,18 @@ static void kvm_no_adjvtime_set(Object *obj, bool value, Error **errp)
|
||||
/* KVM VCPU properties should be prefixed with "kvm-". */
|
||||
void kvm_arm_add_vcpu_properties(Object *obj)
|
||||
{
|
||||
if (!kvm_enabled()) {
|
||||
return;
|
||||
}
|
||||
ARMCPU *cpu = ARM_CPU(obj);
|
||||
CPUARMState *env = &cpu->env;
|
||||
|
||||
ARM_CPU(obj)->kvm_adjvtime = true;
|
||||
object_property_add_bool(obj, "kvm-no-adjvtime", kvm_no_adjvtime_get,
|
||||
kvm_no_adjvtime_set);
|
||||
object_property_set_description(obj, "kvm-no-adjvtime",
|
||||
"Set on to disable the adjustment of "
|
||||
"the virtual counter. VM stopped time "
|
||||
"will be counted.");
|
||||
if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) {
|
||||
cpu->kvm_adjvtime = true;
|
||||
object_property_add_bool(obj, "kvm-no-adjvtime", kvm_no_adjvtime_get,
|
||||
kvm_no_adjvtime_set);
|
||||
object_property_set_description(obj, "kvm-no-adjvtime",
|
||||
"Set on to disable the adjustment of "
|
||||
"the virtual counter. VM stopped time "
|
||||
"will be counted.");
|
||||
}
|
||||
}
|
||||
|
||||
bool kvm_arm_pmu_supported(CPUState *cpu)
|
||||
|
||||
@@ -397,3 +397,133 @@ VCVT_FU_2sh 1111 001 1 1 . ...... .... 1111 0 . . 1 .... @2reg_vcvt
|
||||
# So we have a single decode line and check the cmode/op in the
|
||||
# trans function.
|
||||
Vimm_1r 1111 001 . 1 . 000 ... .... cmode:4 0 . op:1 1 .... @1reg_imm
|
||||
|
||||
######################################################################
|
||||
# Within the "two registers, or three registers of different lengths"
|
||||
# grouping ([23,4]=0b10), bits [21:20] are either part of the opcode
|
||||
# decode: 0b11 for VEXT, two-reg-misc, VTBL, and duplicate-scalar;
|
||||
# or they are a size field for the three-reg-different-lengths and
|
||||
# two-reg-and-scalar insn groups (where size cannot be 0b11). This
|
||||
# is slightly awkward for decodetree: we handle it with this
|
||||
# non-exclusive group which contains within it two exclusive groups:
|
||||
# one for the size=0b11 patterns, and one for the size-not-0b11
|
||||
# patterns. This allows us to check that none of the insns within
|
||||
# each subgroup accidentally overlap each other. Note that all the
|
||||
# trans functions for the size-not-0b11 patterns must check and
|
||||
# return false for size==3.
|
||||
######################################################################
|
||||
{
|
||||
[
|
||||
##################################################################
|
||||
# Miscellaneous size=0b11 insns
|
||||
##################################################################
|
||||
VEXT 1111 001 0 1 . 11 .... .... imm:4 . q:1 . 0 .... \
|
||||
vm=%vm_dp vn=%vn_dp vd=%vd_dp
|
||||
|
||||
VTBL 1111 001 1 1 . 11 .... .... 10 len:2 . op:1 . 0 .... \
|
||||
vm=%vm_dp vn=%vn_dp vd=%vd_dp
|
||||
|
||||
VDUP_scalar 1111 001 1 1 . 11 index:3 1 .... 11 000 q:1 . 0 .... \
|
||||
vm=%vm_dp vd=%vd_dp size=0
|
||||
VDUP_scalar 1111 001 1 1 . 11 index:2 10 .... 11 000 q:1 . 0 .... \
|
||||
vm=%vm_dp vd=%vd_dp size=1
|
||||
VDUP_scalar 1111 001 1 1 . 11 index:1 100 .... 11 000 q:1 . 0 .... \
|
||||
vm=%vm_dp vd=%vd_dp size=2
|
||||
]
|
||||
|
||||
# Subgroup for size != 0b11
|
||||
[
|
||||
##################################################################
|
||||
# 3-reg-different-length grouping:
|
||||
# 1111 001 U 1 D sz!=11 Vn:4 Vd:4 opc:4 N 0 M 0 Vm:4
|
||||
##################################################################
|
||||
|
||||
&3diff vm vn vd size
|
||||
|
||||
@3diff .... ... . . . size:2 .... .... .... . . . . .... \
|
||||
&3diff vm=%vm_dp vn=%vn_dp vd=%vd_dp
|
||||
|
||||
VADDL_S_3d 1111 001 0 1 . .. .... .... 0000 . 0 . 0 .... @3diff
|
||||
VADDL_U_3d 1111 001 1 1 . .. .... .... 0000 . 0 . 0 .... @3diff
|
||||
|
||||
VADDW_S_3d 1111 001 0 1 . .. .... .... 0001 . 0 . 0 .... @3diff
|
||||
VADDW_U_3d 1111 001 1 1 . .. .... .... 0001 . 0 . 0 .... @3diff
|
||||
|
||||
VSUBL_S_3d 1111 001 0 1 . .. .... .... 0010 . 0 . 0 .... @3diff
|
||||
VSUBL_U_3d 1111 001 1 1 . .. .... .... 0010 . 0 . 0 .... @3diff
|
||||
|
||||
VSUBW_S_3d 1111 001 0 1 . .. .... .... 0011 . 0 . 0 .... @3diff
|
||||
VSUBW_U_3d 1111 001 1 1 . .. .... .... 0011 . 0 . 0 .... @3diff
|
||||
|
||||
VADDHN_3d 1111 001 0 1 . .. .... .... 0100 . 0 . 0 .... @3diff
|
||||
VRADDHN_3d 1111 001 1 1 . .. .... .... 0100 . 0 . 0 .... @3diff
|
||||
|
||||
VABAL_S_3d 1111 001 0 1 . .. .... .... 0101 . 0 . 0 .... @3diff
|
||||
VABAL_U_3d 1111 001 1 1 . .. .... .... 0101 . 0 . 0 .... @3diff
|
||||
|
||||
VSUBHN_3d 1111 001 0 1 . .. .... .... 0110 . 0 . 0 .... @3diff
|
||||
VRSUBHN_3d 1111 001 1 1 . .. .... .... 0110 . 0 . 0 .... @3diff
|
||||
|
||||
VABDL_S_3d 1111 001 0 1 . .. .... .... 0111 . 0 . 0 .... @3diff
|
||||
VABDL_U_3d 1111 001 1 1 . .. .... .... 0111 . 0 . 0 .... @3diff
|
||||
|
||||
VMLAL_S_3d 1111 001 0 1 . .. .... .... 1000 . 0 . 0 .... @3diff
|
||||
VMLAL_U_3d 1111 001 1 1 . .. .... .... 1000 . 0 . 0 .... @3diff
|
||||
|
||||
VQDMLAL_3d 1111 001 0 1 . .. .... .... 1001 . 0 . 0 .... @3diff
|
||||
|
||||
VMLSL_S_3d 1111 001 0 1 . .. .... .... 1010 . 0 . 0 .... @3diff
|
||||
VMLSL_U_3d 1111 001 1 1 . .. .... .... 1010 . 0 . 0 .... @3diff
|
||||
|
||||
VQDMLSL_3d 1111 001 0 1 . .. .... .... 1011 . 0 . 0 .... @3diff
|
||||
|
||||
VMULL_S_3d 1111 001 0 1 . .. .... .... 1100 . 0 . 0 .... @3diff
|
||||
VMULL_U_3d 1111 001 1 1 . .. .... .... 1100 . 0 . 0 .... @3diff
|
||||
|
||||
VQDMULL_3d 1111 001 0 1 . .. .... .... 1101 . 0 . 0 .... @3diff
|
||||
|
||||
VMULL_P_3d 1111 001 0 1 . .. .... .... 1110 . 0 . 0 .... @3diff
|
||||
|
||||
##################################################################
|
||||
# 2-regs-plus-scalar grouping:
|
||||
# 1111 001 Q 1 D sz!=11 Vn:4 Vd:4 opc:4 N 1 M 0 Vm:4
|
||||
##################################################################
|
||||
&2scalar vm vn vd size q
|
||||
|
||||
@2scalar .... ... q:1 . . size:2 .... .... .... . . . . .... \
|
||||
&2scalar vm=%vm_dp vn=%vn_dp vd=%vd_dp
|
||||
# For the 'long' ops the Q bit is part of insn decode
|
||||
@2scalar_q0 .... ... . . . size:2 .... .... .... . . . . .... \
|
||||
&2scalar vm=%vm_dp vn=%vn_dp vd=%vd_dp q=0
|
||||
|
||||
VMLA_2sc 1111 001 . 1 . .. .... .... 0000 . 1 . 0 .... @2scalar
|
||||
VMLA_F_2sc 1111 001 . 1 . .. .... .... 0001 . 1 . 0 .... @2scalar
|
||||
|
||||
VMLAL_S_2sc 1111 001 0 1 . .. .... .... 0010 . 1 . 0 .... @2scalar_q0
|
||||
VMLAL_U_2sc 1111 001 1 1 . .. .... .... 0010 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VQDMLAL_2sc 1111 001 0 1 . .. .... .... 0011 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VMLS_2sc 1111 001 . 1 . .. .... .... 0100 . 1 . 0 .... @2scalar
|
||||
VMLS_F_2sc 1111 001 . 1 . .. .... .... 0101 . 1 . 0 .... @2scalar
|
||||
|
||||
VMLSL_S_2sc 1111 001 0 1 . .. .... .... 0110 . 1 . 0 .... @2scalar_q0
|
||||
VMLSL_U_2sc 1111 001 1 1 . .. .... .... 0110 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VQDMLSL_2sc 1111 001 0 1 . .. .... .... 0111 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VMUL_2sc 1111 001 . 1 . .. .... .... 1000 . 1 . 0 .... @2scalar
|
||||
VMUL_F_2sc 1111 001 . 1 . .. .... .... 1001 . 1 . 0 .... @2scalar
|
||||
|
||||
VMULL_S_2sc 1111 001 0 1 . .. .... .... 1010 . 1 . 0 .... @2scalar_q0
|
||||
VMULL_U_2sc 1111 001 1 1 . .. .... .... 1010 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VQDMULL_2sc 1111 001 0 1 . .. .... .... 1011 . 1 . 0 .... @2scalar_q0
|
||||
|
||||
VQDMULH_2sc 1111 001 . 1 . .. .... .... 1100 . 1 . 0 .... @2scalar
|
||||
VQRDMULH_2sc 1111 001 . 1 . .. .... .... 1101 . 1 . 0 .... @2scalar
|
||||
|
||||
VQRDMLAH_2sc 1111 001 . 1 . .. .... .... 1110 . 1 . 0 .... @2scalar
|
||||
VQRDMLSH_2sc 1111 001 . 1 . .. .... .... 1111 . 1 . 0 .... @2scalar
|
||||
]
|
||||
}
|
||||
|
||||
+1146
-2
File diff suppressed because it is too large
Load Diff
+10
-674
File diff suppressed because it is too large
Load Diff
@@ -371,6 +371,7 @@ typedef void NeonGenTwo64OpEnvFn(TCGv_i64, TCGv_ptr, TCGv_i64, TCGv_i64);
|
||||
typedef void NeonGenNarrowFn(TCGv_i32, TCGv_i64);
|
||||
typedef void NeonGenNarrowEnvFn(TCGv_i32, TCGv_ptr, TCGv_i64);
|
||||
typedef void NeonGenWidenFn(TCGv_i64, TCGv_i32);
|
||||
typedef void NeonGenTwoOpWidenFn(TCGv_i64, TCGv_i32, TCGv_i32);
|
||||
typedef void NeonGenTwoSingleOPFn(TCGv_i32, TCGv_i32, TCGv_i32, TCGv_ptr);
|
||||
typedef void NeonGenTwoDoubleOPFn(TCGv_i64, TCGv_i64, TCGv_i64, TCGv_ptr);
|
||||
typedef void NeonGenOneOpFn(TCGv_i64, TCGv_i64);
|
||||
|
||||
Reference in New Issue
Block a user