|
@@ -3129,6 +3129,7 @@ static int fec_enet_init(struct net_device *ndev)
|
|
|
unsigned dsize = fep->bufdesc_ex ? sizeof(struct bufdesc_ex) :
|
|
|
sizeof(struct bufdesc);
|
|
|
unsigned dsize_log2 = __fls(dsize);
|
|
|
+ int ret;
|
|
|
|
|
|
WARN_ON(dsize != (1 << dsize_log2));
|
|
|
#if defined(CONFIG_ARM) || defined(CONFIG_ARM64)
|
|
@@ -3139,6 +3140,13 @@ static int fec_enet_init(struct net_device *ndev)
|
|
|
fep->tx_align = 0x3;
|
|
|
#endif
|
|
|
|
|
|
+ /* Check mask of the streaming and coherent API */
|
|
|
+ ret = dma_set_mask_and_coherent(&fep->pdev->dev, DMA_BIT_MASK(32));
|
|
|
+ if (ret < 0) {
|
|
|
+ dev_warn(&fep->pdev->dev, "No suitable DMA available\n");
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
fec_enet_alloc_queue(ndev);
|
|
|
|
|
|
bd_size = (fep->total_tx_ring_size + fep->total_rx_ring_size) * dsize;
|