2 * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator
4 * PAPR Inter-VM Logical Lan, aka ibmveth
6 * Copyright (c) 2010,2011 David Gibson, IBM Corporation.
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "hw/ppc/spapr.h"
31 #include "hw/ppc/spapr_vio.h"
36 #define MAX_PACKET_SIZE 65536
41 #define DPRINTF(fmt...) do { fprintf(stderr, fmt); } while (0)
43 #define DPRINTF(fmt...)
50 typedef uint64_t vlan_bd_t
;
52 #define VLAN_BD_VALID 0x8000000000000000ULL
53 #define VLAN_BD_TOGGLE 0x4000000000000000ULL
54 #define VLAN_BD_NO_CSUM 0x0200000000000000ULL
55 #define VLAN_BD_CSUM_GOOD 0x0100000000000000ULL
56 #define VLAN_BD_LEN_MASK 0x00ffffff00000000ULL
57 #define VLAN_BD_LEN(bd) (((bd) & VLAN_BD_LEN_MASK) >> 32)
58 #define VLAN_BD_ADDR_MASK 0x00000000ffffffffULL
59 #define VLAN_BD_ADDR(bd) ((bd) & VLAN_BD_ADDR_MASK)
61 #define VLAN_VALID_BD(addr, len) (VLAN_BD_VALID | \
62 (((len) << 32) & VLAN_BD_LEN_MASK) | \
63 (addr & VLAN_BD_ADDR_MASK))
65 #define VLAN_RXQC_TOGGLE 0x80
66 #define VLAN_RXQC_VALID 0x40
67 #define VLAN_RXQC_NO_CSUM 0x02
68 #define VLAN_RXQC_CSUM_GOOD 0x01
70 #define VLAN_RQ_ALIGNMENT 16
71 #define VLAN_RXQ_BD_OFF 0
72 #define VLAN_FILTER_BD_OFF 8
73 #define VLAN_RX_BDS_OFF 16
74 #define VLAN_MAX_BUFS ((SPAPR_TCE_PAGE_SIZE - VLAN_RX_BDS_OFF) / 8)
76 #define TYPE_VIO_SPAPR_VLAN_DEVICE "spapr-vlan"
77 #define VIO_SPAPR_VLAN_DEVICE(obj) \
78 OBJECT_CHECK(VIOsPAPRVLANDevice, (obj), TYPE_VIO_SPAPR_VLAN_DEVICE)
80 typedef struct VIOsPAPRVLANDevice
{
85 target_ulong buf_list
;
86 uint32_t add_buf_ptr
, use_buf_ptr
, rx_bufs
;
90 static int spapr_vlan_can_receive(NetClientState
*nc
)
92 VIOsPAPRVLANDevice
*dev
= qemu_get_nic_opaque(nc
);
94 return (dev
->isopen
&& dev
->rx_bufs
> 0);
97 static ssize_t
spapr_vlan_receive(NetClientState
*nc
, const uint8_t *buf
,
100 VIOsPAPRVLANDevice
*dev
= qemu_get_nic_opaque(nc
);
101 VIOsPAPRDevice
*sdev
= VIO_SPAPR_DEVICE(dev
);
102 vlan_bd_t rxq_bd
= vio_ldq(sdev
, dev
->buf_list
+ VLAN_RXQ_BD_OFF
);
104 int buf_ptr
= dev
->use_buf_ptr
;
108 DPRINTF("spapr_vlan_receive() [%s] rx_bufs=%d\n", sdev
->qdev
.id
,
121 if (buf_ptr
>= SPAPR_TCE_PAGE_SIZE
) {
122 buf_ptr
= VLAN_RX_BDS_OFF
;
125 bd
= vio_ldq(sdev
, dev
->buf_list
+ buf_ptr
);
126 DPRINTF("use_buf_ptr=%d bd=0x%016llx\n",
127 buf_ptr
, (unsigned long long)bd
);
128 } while ((!(bd
& VLAN_BD_VALID
) || (VLAN_BD_LEN(bd
) < (size
+ 8)))
129 && (buf_ptr
!= dev
->use_buf_ptr
));
131 if (!(bd
& VLAN_BD_VALID
) || (VLAN_BD_LEN(bd
) < (size
+ 8))) {
132 /* Failed to find a suitable buffer */
136 /* Remove the buffer from the pool */
138 dev
->use_buf_ptr
= buf_ptr
;
139 vio_stq(sdev
, dev
->buf_list
+ dev
->use_buf_ptr
, 0);
141 DPRINTF("Found buffer: ptr=%d num=%d\n", dev
->use_buf_ptr
, dev
->rx_bufs
);
143 /* Transfer the packet data */
144 if (spapr_vio_dma_write(sdev
, VLAN_BD_ADDR(bd
) + 8, buf
, size
) < 0) {
148 DPRINTF("spapr_vlan_receive: DMA write completed\n");
150 /* Update the receive queue */
151 control
= VLAN_RXQC_TOGGLE
| VLAN_RXQC_VALID
;
152 if (rxq_bd
& VLAN_BD_TOGGLE
) {
153 control
^= VLAN_RXQC_TOGGLE
;
156 handle
= vio_ldq(sdev
, VLAN_BD_ADDR(bd
));
157 vio_stq(sdev
, VLAN_BD_ADDR(rxq_bd
) + dev
->rxq_ptr
+ 8, handle
);
158 vio_stl(sdev
, VLAN_BD_ADDR(rxq_bd
) + dev
->rxq_ptr
+ 4, size
);
159 vio_sth(sdev
, VLAN_BD_ADDR(rxq_bd
) + dev
->rxq_ptr
+ 2, 8);
160 vio_stb(sdev
, VLAN_BD_ADDR(rxq_bd
) + dev
->rxq_ptr
, control
);
162 DPRINTF("wrote rxq entry (ptr=0x%llx): 0x%016llx 0x%016llx\n",
163 (unsigned long long)dev
->rxq_ptr
,
164 (unsigned long long)vio_ldq(sdev
, VLAN_BD_ADDR(rxq_bd
) +
166 (unsigned long long)vio_ldq(sdev
, VLAN_BD_ADDR(rxq_bd
) +
170 if (dev
->rxq_ptr
>= VLAN_BD_LEN(rxq_bd
)) {
172 vio_stq(sdev
, dev
->buf_list
+ VLAN_RXQ_BD_OFF
, rxq_bd
^ VLAN_BD_TOGGLE
);
175 if (sdev
->signal_state
& 1) {
176 qemu_irq_pulse(spapr_vio_qirq(sdev
));
182 static void spapr_vlan_cleanup(NetClientState
*nc
)
184 VIOsPAPRVLANDevice
*dev
= qemu_get_nic_opaque(nc
);
189 static NetClientInfo net_spapr_vlan_info
= {
190 .type
= NET_CLIENT_OPTIONS_KIND_NIC
,
191 .size
= sizeof(NICState
),
192 .can_receive
= spapr_vlan_can_receive
,
193 .receive
= spapr_vlan_receive
,
194 .cleanup
= spapr_vlan_cleanup
,
197 static void spapr_vlan_reset(VIOsPAPRDevice
*sdev
)
199 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
206 static int spapr_vlan_init(VIOsPAPRDevice
*sdev
)
208 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
210 qemu_macaddr_default_if_unset(&dev
->nicconf
.macaddr
);
212 dev
->nic
= qemu_new_nic(&net_spapr_vlan_info
, &dev
->nicconf
,
213 object_get_typename(OBJECT(sdev
)), sdev
->qdev
.id
, dev
);
214 qemu_format_nic_info_str(qemu_get_queue(dev
->nic
), dev
->nicconf
.macaddr
.a
);
219 void spapr_vlan_create(VIOsPAPRBus
*bus
, NICInfo
*nd
)
223 dev
= qdev_create(&bus
->bus
, "spapr-vlan");
225 qdev_set_nic_properties(dev
, nd
);
227 qdev_init_nofail(dev
);
230 static int spapr_vlan_devnode(VIOsPAPRDevice
*dev
, void *fdt
, int node_off
)
232 VIOsPAPRVLANDevice
*vdev
= VIO_SPAPR_VLAN_DEVICE(dev
);
233 uint8_t padded_mac
[8] = {0, 0};
236 /* Some old phyp versions give the mac address in an 8-byte
237 * property. The kernel driver has an insane workaround for this;
238 * rather than doing the obvious thing and checking the property
239 * length, it checks whether the first byte has 0b10 in the low
240 * bits. If a correct 6-byte property has a different first byte
241 * the kernel will get the wrong mac address, overrunning its
242 * buffer in the process (read only, thank goodness).
244 * Here we workaround the kernel workaround by always supplying an
245 * 8-byte property, with the mac address in the last six bytes */
246 memcpy(&padded_mac
[2], &vdev
->nicconf
.macaddr
, ETH_ALEN
);
247 ret
= fdt_setprop(fdt
, node_off
, "local-mac-address",
248 padded_mac
, sizeof(padded_mac
));
253 ret
= fdt_setprop_cell(fdt
, node_off
, "ibm,mac-address-filters", 0);
261 static int check_bd(VIOsPAPRVLANDevice
*dev
, vlan_bd_t bd
,
262 target_ulong alignment
)
264 if ((VLAN_BD_ADDR(bd
) % alignment
)
265 || (VLAN_BD_LEN(bd
) % alignment
)) {
269 if (!spapr_vio_dma_valid(&dev
->sdev
, VLAN_BD_ADDR(bd
),
270 VLAN_BD_LEN(bd
), DMA_DIRECTION_FROM_DEVICE
)
271 || !spapr_vio_dma_valid(&dev
->sdev
, VLAN_BD_ADDR(bd
),
272 VLAN_BD_LEN(bd
), DMA_DIRECTION_TO_DEVICE
)) {
279 static target_ulong
h_register_logical_lan(PowerPCCPU
*cpu
,
280 sPAPREnvironment
*spapr
,
284 target_ulong reg
= args
[0];
285 target_ulong buf_list
= args
[1];
286 target_ulong rec_queue
= args
[2];
287 target_ulong filter_list
= args
[3];
288 VIOsPAPRDevice
*sdev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
289 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
290 vlan_bd_t filter_list_bd
;
297 hcall_dprintf("H_REGISTER_LOGICAL_LAN called twice without "
298 "H_FREE_LOGICAL_LAN\n");
302 if (check_bd(dev
, VLAN_VALID_BD(buf_list
, SPAPR_TCE_PAGE_SIZE
),
303 SPAPR_TCE_PAGE_SIZE
) < 0) {
304 hcall_dprintf("Bad buf_list 0x" TARGET_FMT_lx
"\n", buf_list
);
308 filter_list_bd
= VLAN_VALID_BD(filter_list
, SPAPR_TCE_PAGE_SIZE
);
309 if (check_bd(dev
, filter_list_bd
, SPAPR_TCE_PAGE_SIZE
) < 0) {
310 hcall_dprintf("Bad filter_list 0x" TARGET_FMT_lx
"\n", filter_list
);
314 if (!(rec_queue
& VLAN_BD_VALID
)
315 || (check_bd(dev
, rec_queue
, VLAN_RQ_ALIGNMENT
) < 0)) {
316 hcall_dprintf("Bad receive queue\n");
320 dev
->buf_list
= buf_list
;
321 sdev
->signal_state
= 0;
323 rec_queue
&= ~VLAN_BD_TOGGLE
;
325 /* Initialize the buffer list */
326 vio_stq(sdev
, buf_list
, rec_queue
);
327 vio_stq(sdev
, buf_list
+ 8, filter_list_bd
);
328 spapr_vio_dma_set(sdev
, buf_list
+ VLAN_RX_BDS_OFF
, 0,
329 SPAPR_TCE_PAGE_SIZE
- VLAN_RX_BDS_OFF
);
330 dev
->add_buf_ptr
= VLAN_RX_BDS_OFF
- 8;
331 dev
->use_buf_ptr
= VLAN_RX_BDS_OFF
- 8;
335 /* Initialize the receive queue */
336 spapr_vio_dma_set(sdev
, VLAN_BD_ADDR(rec_queue
), 0, VLAN_BD_LEN(rec_queue
));
339 qemu_flush_queued_packets(qemu_get_queue(dev
->nic
));
345 static target_ulong
h_free_logical_lan(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
346 target_ulong opcode
, target_ulong
*args
)
348 target_ulong reg
= args
[0];
349 VIOsPAPRDevice
*sdev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
350 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
357 hcall_dprintf("H_FREE_LOGICAL_LAN called without "
358 "H_REGISTER_LOGICAL_LAN\n");
362 spapr_vlan_reset(sdev
);
366 static target_ulong
h_add_logical_lan_buffer(PowerPCCPU
*cpu
,
367 sPAPREnvironment
*spapr
,
371 target_ulong reg
= args
[0];
372 target_ulong buf
= args
[1];
373 VIOsPAPRDevice
*sdev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
374 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
377 DPRINTF("H_ADD_LOGICAL_LAN_BUFFER(0x" TARGET_FMT_lx
378 ", 0x" TARGET_FMT_lx
")\n", reg
, buf
);
381 hcall_dprintf("Bad device\n");
385 if ((check_bd(dev
, buf
, 4) < 0)
386 || (VLAN_BD_LEN(buf
) < 16)) {
387 hcall_dprintf("Bad buffer enqueued\n");
391 if (!dev
->isopen
|| dev
->rx_bufs
>= VLAN_MAX_BUFS
) {
396 dev
->add_buf_ptr
+= 8;
397 if (dev
->add_buf_ptr
>= SPAPR_TCE_PAGE_SIZE
) {
398 dev
->add_buf_ptr
= VLAN_RX_BDS_OFF
;
401 bd
= vio_ldq(sdev
, dev
->buf_list
+ dev
->add_buf_ptr
);
402 } while (bd
& VLAN_BD_VALID
);
404 vio_stq(sdev
, dev
->buf_list
+ dev
->add_buf_ptr
, buf
);
408 qemu_flush_queued_packets(qemu_get_queue(dev
->nic
));
410 DPRINTF("h_add_logical_lan_buffer(): Added buf ptr=%d rx_bufs=%d"
411 " bd=0x%016llx\n", dev
->add_buf_ptr
, dev
->rx_bufs
,
412 (unsigned long long)buf
);
417 static target_ulong
h_send_logical_lan(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
418 target_ulong opcode
, target_ulong
*args
)
420 target_ulong reg
= args
[0];
421 target_ulong
*bufs
= args
+ 1;
422 target_ulong continue_token
= args
[7];
423 VIOsPAPRDevice
*sdev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
424 VIOsPAPRVLANDevice
*dev
= VIO_SPAPR_VLAN_DEVICE(sdev
);
430 DPRINTF("H_SEND_LOGICAL_LAN(0x" TARGET_FMT_lx
", <bufs>, 0x"
431 TARGET_FMT_lx
")\n", reg
, continue_token
);
437 DPRINTF("rxbufs = %d\n", dev
->rx_bufs
);
443 if (continue_token
) {
444 return H_HARDWARE
; /* FIXME actually handle this */
448 for (i
= 0; i
< 6; i
++) {
449 DPRINTF(" buf desc: 0x" TARGET_FMT_lx
"\n", bufs
[i
]);
450 if (!(bufs
[i
] & VLAN_BD_VALID
)) {
453 total_len
+= VLAN_BD_LEN(bufs
[i
]);
457 DPRINTF("h_send_logical_lan() %d buffers, total length 0x%x\n",
460 if (total_len
== 0) {
464 if (total_len
> MAX_PACKET_SIZE
) {
465 /* Don't let the guest force too large an allocation */
469 lbuf
= alloca(total_len
);
471 for (i
= 0; i
< nbufs
; i
++) {
472 ret
= spapr_vio_dma_read(sdev
, VLAN_BD_ADDR(bufs
[i
]),
473 p
, VLAN_BD_LEN(bufs
[i
]));
478 p
+= VLAN_BD_LEN(bufs
[i
]);
481 qemu_send_packet(qemu_get_queue(dev
->nic
), lbuf
, total_len
);
486 static target_ulong
h_multicast_ctrl(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
487 target_ulong opcode
, target_ulong
*args
)
489 target_ulong reg
= args
[0];
490 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
499 static Property spapr_vlan_properties
[] = {
500 DEFINE_SPAPR_PROPERTIES(VIOsPAPRVLANDevice
, sdev
),
501 DEFINE_NIC_PROPERTIES(VIOsPAPRVLANDevice
, nicconf
),
502 DEFINE_PROP_END_OF_LIST(),
505 static const VMStateDescription vmstate_spapr_llan
= {
506 .name
= "spapr_llan",
508 .minimum_version_id
= 1,
509 .minimum_version_id_old
= 1,
510 .fields
= (VMStateField
[]) {
511 VMSTATE_SPAPR_VIO(sdev
, VIOsPAPRVLANDevice
),
513 VMSTATE_BOOL(isopen
, VIOsPAPRVLANDevice
),
514 VMSTATE_UINTTL(buf_list
, VIOsPAPRVLANDevice
),
515 VMSTATE_UINT32(add_buf_ptr
, VIOsPAPRVLANDevice
),
516 VMSTATE_UINT32(use_buf_ptr
, VIOsPAPRVLANDevice
),
517 VMSTATE_UINT32(rx_bufs
, VIOsPAPRVLANDevice
),
518 VMSTATE_UINTTL(rxq_ptr
, VIOsPAPRVLANDevice
),
520 VMSTATE_END_OF_LIST()
524 static void spapr_vlan_class_init(ObjectClass
*klass
, void *data
)
526 DeviceClass
*dc
= DEVICE_CLASS(klass
);
527 VIOsPAPRDeviceClass
*k
= VIO_SPAPR_DEVICE_CLASS(klass
);
529 k
->init
= spapr_vlan_init
;
530 k
->reset
= spapr_vlan_reset
;
531 k
->devnode
= spapr_vlan_devnode
;
532 k
->dt_name
= "l-lan";
533 k
->dt_type
= "network";
534 k
->dt_compatible
= "IBM,l-lan";
535 k
->signal_mask
= 0x1;
536 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
537 dc
->props
= spapr_vlan_properties
;
538 k
->rtce_window_size
= 0x10000000;
539 dc
->vmsd
= &vmstate_spapr_llan
;
542 static const TypeInfo spapr_vlan_info
= {
543 .name
= TYPE_VIO_SPAPR_VLAN_DEVICE
,
544 .parent
= TYPE_VIO_SPAPR_DEVICE
,
545 .instance_size
= sizeof(VIOsPAPRVLANDevice
),
546 .class_init
= spapr_vlan_class_init
,
549 static void spapr_vlan_register_types(void)
551 spapr_register_hypercall(H_REGISTER_LOGICAL_LAN
, h_register_logical_lan
);
552 spapr_register_hypercall(H_FREE_LOGICAL_LAN
, h_free_logical_lan
);
553 spapr_register_hypercall(H_SEND_LOGICAL_LAN
, h_send_logical_lan
);
554 spapr_register_hypercall(H_ADD_LOGICAL_LAN_BUFFER
,
555 h_add_logical_lan_buffer
);
556 spapr_register_hypercall(H_MULTICAST_CTRL
, h_multicast_ctrl
);
557 type_register_static(&spapr_vlan_info
);
560 type_init(spapr_vlan_register_types
)