mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Remove unnecessary cast when using the address_space API
This commit was produced with the included Coccinelle script scripts/coccinelle/exec_rw_const. Two lines in hw/net/dp8393x.c that Coccinelle produced that were over 80 characters were re-wrapped by hand. Suggested-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
4ef044cb14
commit
b7cbebf2b9
12 changed files with 54 additions and 46 deletions
|
@ -327,8 +327,7 @@ static void set_kernel_args(const struct arm_boot_info *info, AddressSpace *as)
|
|||
|
||||
cmdline_size = strlen(info->kernel_cmdline);
|
||||
address_space_write(as, p + 8, MEMTXATTRS_UNSPECIFIED,
|
||||
(const uint8_t *)info->kernel_cmdline,
|
||||
cmdline_size + 1);
|
||||
info->kernel_cmdline, cmdline_size + 1);
|
||||
cmdline_size = (cmdline_size >> 2) + 1;
|
||||
WRITE_WORD(p, cmdline_size + 2);
|
||||
WRITE_WORD(p, 0x54410009);
|
||||
|
@ -420,8 +419,7 @@ static void set_kernel_args_old(const struct arm_boot_info *info,
|
|||
}
|
||||
s = info->kernel_cmdline;
|
||||
if (s) {
|
||||
address_space_write(as, p, MEMTXATTRS_UNSPECIFIED,
|
||||
(const uint8_t *)s, strlen(s) + 1);
|
||||
address_space_write(as, p, MEMTXATTRS_UNSPECIFIED, s, strlen(s) + 1);
|
||||
} else {
|
||||
WRITE_WORD(p, 0);
|
||||
}
|
||||
|
|
|
@ -513,8 +513,8 @@ static IOMMUTLBEntry rc4030_dma_translate(IOMMUMemoryRegion *iommu, hwaddr addr,
|
|||
if (i < s->dma_tl_limit / sizeof(entry)) {
|
||||
entry_address = (s->dma_tl_base & 0x7fffffff) + i * sizeof(entry);
|
||||
if (address_space_read(ret.target_as, entry_address,
|
||||
MEMTXATTRS_UNSPECIFIED, (unsigned char *)&entry,
|
||||
sizeof(entry)) == MEMTX_OK) {
|
||||
MEMTXATTRS_UNSPECIFIED, &entry, sizeof(entry))
|
||||
== MEMTX_OK) {
|
||||
ret.translated_addr = entry.frame & ~(DMA_PAGESIZE - 1);
|
||||
ret.perm = IOMMU_RW;
|
||||
}
|
||||
|
|
|
@ -364,7 +364,7 @@ static uint64_t zdma_update_descr_addr(XlnxZDMA *s, bool type,
|
|||
} else {
|
||||
addr = zdma_get_regaddr64(s, basereg);
|
||||
addr += sizeof(s->dsc_dst);
|
||||
address_space_rw(s->dma_as, addr, s->attr, (void *) &next, 8, false);
|
||||
address_space_rw(s->dma_as, addr, s->attr, &next, 8, false);
|
||||
zdma_put_regaddr64(s, basereg, next);
|
||||
}
|
||||
return next;
|
||||
|
|
|
@ -871,7 +871,7 @@ static void gem_get_rx_desc(CadenceGEMState *s, int q)
|
|||
|
||||
/* read current descriptor */
|
||||
address_space_read(&s->dma_as, desc_addr, MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)s->rx_desc[q],
|
||||
s->rx_desc[q],
|
||||
sizeof(uint32_t) * gem_get_desc_len(s, true));
|
||||
|
||||
/* Descriptor owned by software ? */
|
||||
|
@ -1029,9 +1029,8 @@ static ssize_t gem_receive(NetClientState *nc, const uint8_t *buf, size_t size)
|
|||
|
||||
/* Descriptor write-back. */
|
||||
desc_addr = gem_get_rx_desc_addr(s, q);
|
||||
address_space_write(&s->dma_as, desc_addr,
|
||||
MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)s->rx_desc[q],
|
||||
address_space_write(&s->dma_as, desc_addr, MEMTXATTRS_UNSPECIFIED,
|
||||
s->rx_desc[q],
|
||||
sizeof(uint32_t) * gem_get_desc_len(s, true));
|
||||
|
||||
/* Next descriptor */
|
||||
|
@ -1137,7 +1136,7 @@ static void gem_transmit(CadenceGEMState *s)
|
|||
|
||||
DB_PRINT("read descriptor 0x%" HWADDR_PRIx "\n", packet_desc_addr);
|
||||
address_space_read(&s->dma_as, packet_desc_addr,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)desc,
|
||||
MEMTXATTRS_UNSPECIFIED, desc,
|
||||
sizeof(uint32_t) * gem_get_desc_len(s, false));
|
||||
/* Handle all descriptors owned by hardware */
|
||||
while (tx_desc_get_used(desc) == 0) {
|
||||
|
@ -1185,14 +1184,12 @@ static void gem_transmit(CadenceGEMState *s)
|
|||
* the processor.
|
||||
*/
|
||||
address_space_read(&s->dma_as, desc_addr,
|
||||
MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)desc_first,
|
||||
MEMTXATTRS_UNSPECIFIED, desc_first,
|
||||
sizeof(desc_first));
|
||||
tx_desc_set_used(desc_first);
|
||||
address_space_write(&s->dma_as, desc_addr,
|
||||
MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)desc_first,
|
||||
sizeof(desc_first));
|
||||
MEMTXATTRS_UNSPECIFIED, desc_first,
|
||||
sizeof(desc_first));
|
||||
/* Advance the hardware current descriptor past this packet */
|
||||
if (tx_desc_get_wrap(desc)) {
|
||||
s->tx_desc_addr[q] = s->regs[GEM_TXQBASE];
|
||||
|
@ -1246,8 +1243,8 @@ static void gem_transmit(CadenceGEMState *s)
|
|||
}
|
||||
DB_PRINT("read descriptor 0x%" HWADDR_PRIx "\n", packet_desc_addr);
|
||||
address_space_read(&s->dma_as, packet_desc_addr,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)desc,
|
||||
sizeof(uint32_t) * gem_get_desc_len(s, false));
|
||||
MEMTXATTRS_UNSPECIFIED, desc,
|
||||
sizeof(uint32_t) * gem_get_desc_len(s, false));
|
||||
}
|
||||
|
||||
if (tx_desc_get_used(desc)) {
|
||||
|
|
|
@ -276,7 +276,7 @@ static void dp8393x_do_load_cam(dp8393xState *s)
|
|||
while (s->regs[SONIC_CDC] & 0x1f) {
|
||||
/* Fill current entry */
|
||||
address_space_rw(&s->as, dp8393x_cdp(s),
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
s->cam[index][0] = dp8393x_get(s, width, 1) & 0xff;
|
||||
s->cam[index][1] = dp8393x_get(s, width, 1) >> 8;
|
||||
s->cam[index][2] = dp8393x_get(s, width, 2) & 0xff;
|
||||
|
@ -294,7 +294,7 @@ static void dp8393x_do_load_cam(dp8393xState *s)
|
|||
|
||||
/* Read CAM enable */
|
||||
address_space_rw(&s->as, dp8393x_cdp(s),
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
s->regs[SONIC_CE] = dp8393x_get(s, width, 0);
|
||||
DPRINTF("load cam done. cam enable mask 0x%04x\n", s->regs[SONIC_CE]);
|
||||
|
||||
|
@ -312,7 +312,7 @@ static void dp8393x_do_read_rra(dp8393xState *s)
|
|||
width = (s->regs[SONIC_DCR] & SONIC_DCR_DW) ? 2 : 1;
|
||||
size = sizeof(uint16_t) * 4 * width;
|
||||
address_space_rw(&s->as, dp8393x_rrp(s),
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
|
||||
/* Update SONIC registers */
|
||||
s->regs[SONIC_CRBA0] = dp8393x_get(s, width, 0);
|
||||
|
@ -427,7 +427,7 @@ static void dp8393x_do_transmit_packets(dp8393xState *s)
|
|||
s->regs[SONIC_TTDA] = s->regs[SONIC_CTDA];
|
||||
DPRINTF("Transmit packet at %08x\n", dp8393x_ttda(s));
|
||||
address_space_rw(&s->as, dp8393x_ttda(s) + sizeof(uint16_t) * width,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
tx_len = 0;
|
||||
|
||||
/* Update registers */
|
||||
|
@ -461,7 +461,7 @@ static void dp8393x_do_transmit_packets(dp8393xState *s)
|
|||
size = sizeof(uint16_t) * 3 * width;
|
||||
address_space_rw(&s->as,
|
||||
dp8393x_ttda(s) + sizeof(uint16_t) * (4 + 3 * i) * width,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
s->regs[SONIC_TSA0] = dp8393x_get(s, width, 0);
|
||||
s->regs[SONIC_TSA1] = dp8393x_get(s, width, 1);
|
||||
s->regs[SONIC_TFS] = dp8393x_get(s, width, 2);
|
||||
|
@ -495,17 +495,17 @@ static void dp8393x_do_transmit_packets(dp8393xState *s)
|
|||
s->regs[SONIC_TCR] & 0x0fff); /* status */
|
||||
size = sizeof(uint16_t) * width;
|
||||
address_space_rw(&s->as,
|
||||
dp8393x_ttda(s),
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 1);
|
||||
dp8393x_ttda(s),
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 1);
|
||||
|
||||
if (!(s->regs[SONIC_CR] & SONIC_CR_HTX)) {
|
||||
/* Read footer of packet */
|
||||
size = sizeof(uint16_t) * width;
|
||||
address_space_rw(&s->as,
|
||||
dp8393x_ttda(s) +
|
||||
dp8393x_ttda(s) +
|
||||
sizeof(uint16_t) *
|
||||
(4 + 3 * s->regs[SONIC_TFC]) * width,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
s->regs[SONIC_CTDA] = dp8393x_get(s, width, 0) & ~0x1;
|
||||
if (dp8393x_get(s, width, 0) & 0x1) {
|
||||
/* EOL detected */
|
||||
|
@ -768,7 +768,7 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
|
|||
size = sizeof(uint16_t) * 1 * width;
|
||||
address = dp8393x_crda(s) + sizeof(uint16_t) * 5 * width;
|
||||
address_space_rw(&s->as, address, MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)s->data, size, 0);
|
||||
s->data, size, 0);
|
||||
if (dp8393x_get(s, width, 0) & 0x1) {
|
||||
/* Still EOL ; stop reception */
|
||||
return -1;
|
||||
|
@ -790,7 +790,7 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
|
|||
address_space_write(&s->as, address, MEMTXATTRS_UNSPECIFIED, buf, rx_len);
|
||||
address += rx_len;
|
||||
address_space_rw(&s->as, address,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)&checksum, 4, 1);
|
||||
MEMTXATTRS_UNSPECIFIED, &checksum, 4, 1);
|
||||
rx_len += 4;
|
||||
s->regs[SONIC_CRBA1] = address >> 16;
|
||||
s->regs[SONIC_CRBA0] = address & 0xffff;
|
||||
|
@ -819,12 +819,12 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
|
|||
dp8393x_put(s, width, 4, s->regs[SONIC_RSC]); /* seq_no */
|
||||
size = sizeof(uint16_t) * 5 * width;
|
||||
address_space_rw(&s->as, dp8393x_crda(s),
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 1);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 1);
|
||||
|
||||
/* Move to next descriptor */
|
||||
size = sizeof(uint16_t) * width;
|
||||
address_space_rw(&s->as, dp8393x_crda(s) + sizeof(uint16_t) * 5 * width,
|
||||
MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
|
||||
MEMTXATTRS_UNSPECIFIED, s->data, size, 0);
|
||||
s->regs[SONIC_LLFA] = dp8393x_get(s, width, 0);
|
||||
if (s->regs[SONIC_LLFA] & 0x1) {
|
||||
/* EOL detected */
|
||||
|
@ -838,7 +838,7 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
|
|||
}
|
||||
s->data[0] = 0;
|
||||
address_space_rw(&s->as, offset, MEMTXATTRS_UNSPECIFIED,
|
||||
(uint8_t *)s->data, sizeof(uint16_t), 1);
|
||||
s->data, sizeof(uint16_t), 1);
|
||||
s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA];
|
||||
s->regs[SONIC_ISR] |= SONIC_ISR_PKTRX;
|
||||
s->regs[SONIC_RSC] = (s->regs[SONIC_RSC] & 0xff00) | (((s->regs[SONIC_RSC] & 0x00ff) + 1) & 0x00ff);
|
||||
|
|
|
@ -875,7 +875,7 @@ static inline int ida_read_next_idaw(CcwDataStream *cds)
|
|||
return -EINVAL; /* channel program check */
|
||||
}
|
||||
ret = address_space_rw(&address_space_memory, idaw_addr,
|
||||
MEMTXATTRS_UNSPECIFIED, (void *) &idaw.fmt2,
|
||||
MEMTXATTRS_UNSPECIFIED, &idaw.fmt2,
|
||||
sizeof(idaw.fmt2), false);
|
||||
cds->cda = be64_to_cpu(idaw.fmt2);
|
||||
} else {
|
||||
|
@ -884,7 +884,7 @@ static inline int ida_read_next_idaw(CcwDataStream *cds)
|
|||
return -EINVAL; /* channel program check */
|
||||
}
|
||||
ret = address_space_rw(&address_space_memory, idaw_addr,
|
||||
MEMTXATTRS_UNSPECIFIED, (void *) &idaw.fmt1,
|
||||
MEMTXATTRS_UNSPECIFIED, &idaw.fmt1,
|
||||
sizeof(idaw.fmt1), false);
|
||||
cds->cda = be64_to_cpu(idaw.fmt1);
|
||||
if (cds->cda & 0x80000000) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue