diff mbox

[v4,7/8] Add ENET/Gbps Ethernet support to FEC device

Message ID a74a979103c5cb6d5f2dab05c044db71dc305c17.1463609668.git.jcd@tribudubois.net
State New
Headers show

Commit Message

Jean-Christophe Dubois May 18, 2016, 10:23 p.m. UTC
The ENET device (present in i.MX6) is "derived" from FEC and backward
compatible with it.

This patch adds the necessary support of the added feature in the ENET
device to allow Linux to use it (on supported processors).

Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
---

Changes since v1:
 * Not present on v1
   
Changes since v2:
 * Not present on v2
 
Changes since v3:
 * Separate and fix the 2 supported interrupts

 hw/arm/fsl-imx25.c       |   3 +
 hw/net/imx_fec.c         | 713 ++++++++++++++++++++++++++++++++++++++---------
 include/hw/net/imx_fec.h | 195 ++++++++++---
 3 files changed, 745 insertions(+), 166 deletions(-)

Comments

Jason Wang May 19, 2016, 3:48 a.m. UTC | #1
On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
> The ENET device (present in i.MX6) is "derived" from FEC and backward
> compatible with it.
>
> This patch adds the necessary support of the added feature in the ENET
> device to allow Linux to use it (on supported processors).
>
> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
> ---
>
> Changes since v1:
>   * Not present on v1
>     
> Changes since v2:
>   * Not present on v2
>   
> Changes since v3:
>   * Separate and fix the 2 supported interrupts
>
>   hw/arm/fsl-imx25.c       |   3 +
>   hw/net/imx_fec.c         | 713 ++++++++++++++++++++++++++++++++++++++---------
>   include/hw/net/imx_fec.h | 195 ++++++++++---
>   3 files changed, 745 insertions(+), 166 deletions(-)

[...]

>   
> -static Property imx_fec_properties[] = {
> +static Property imx_eth_properties[] = {
>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>       DEFINE_PROP_END_OF_LIST(),
>   };

It's ok to decide with "is-fec", but is it better to use a new type for 
that?

>   
> -static void imx_fec_class_init(ObjectClass *klass, void *data)
> +static void imx_eth_class_init(ObjectClass *klass, void *data)
>   {
>       DeviceClass *dc = DEVICE_CLASS(klass);
>   
> -    dc->vmsd = &vmstate_imx_fec;
> -    dc->reset = imx_fec_reset;
> -    dc->props = imx_fec_properties;
> -    dc->realize = imx_fec_realize;
> -    dc->desc = "i.MX FEC Ethernet Controller";
> +    dc->vmsd    = &vmstate_imx_eth;
> +    dc->reset   = imx_eth_reset;
> +    dc->props   = imx_eth_properties;
> +    dc->realize = imx_eth_realize;
> +    dc->desc    = "i.MX FEC/ENET Ethernet Controller";
>   }
>   
> -static const TypeInfo imx_fec_info = {
> -    .name = TYPE_IMX_FEC,
> -    .parent = TYPE_SYS_BUS_DEVICE,
> +static const TypeInfo imx_eth_info = {
> +    .name          = TYPE_IMX_FEC,
> +    .parent        = TYPE_SYS_BUS_DEVICE,
>       .instance_size = sizeof(IMXFECState),
> -    .class_init = imx_fec_class_init,
> +    .class_init    = imx_eth_class_init,
>   };
>   
> -static void imx_fec_register_types(void)
> +static void imx_eth_register_types(void)
>   {
> -    type_register_static(&imx_fec_info);
> +    type_register_static(&imx_eth_info);
>   }
>   
> -type_init(imx_fec_register_types)
> +type_init(imx_eth_register_types)
> diff --git a/include/hw/net/imx_fec.h b/include/hw/net/imx_fec.h
> index 709f8a0..a09b7d7 100644
> --- a/include/hw/net/imx_fec.h
> +++ b/include/hw/net/imx_fec.h
> @@ -1,5 +1,5 @@
>   /*
> - * i.MX Fast Ethernet Controller emulation.
> + * i.MX FEC/ENET Ethernet Controller emulation.
>    *
>    * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
>    *
> @@ -53,25 +53,64 @@
>   #define ENET_RDSR              96
>   #define ENET_TDSR              97
>   #define ENET_MRBR              98
> +#define ENET_RSFL              100
> +#define ENET_RSEM              101
> +#define ENET_RAEM              102
> +#define ENET_RAFL              103
> +#define ENET_TSEM              104
> +#define ENET_TAEM              105
> +#define ENET_TAFL              106
> +#define ENET_TIPG              107
> +#define ENET_FTRL              108
> +#define ENET_TACC              112
> +#define ENET_RACC              113
>   #define ENET_MIIGSK_CFGR       192
>   #define ENET_MIIGSK_ENR        194
> +#define ENET_ATCR              256
> +#define ENET_ATVR              257
> +#define ENET_ATOFF             258
> +#define ENET_ATPER             259
> +#define ENET_ATCOR             260
> +#define ENET_ATINC             261
> +#define ENET_ATSTMP            262
> +#define ENET_TGSR              385
> +#define ENET_TCSR0             386
> +#define ENET_TCCR0             387
> +#define ENET_TCSR1             388
> +#define ENET_TCCR1             389
> +#define ENET_TCSR2             390
> +#define ENET_TCCR2             391
> +#define ENET_TCSR3             392
> +#define ENET_TCCR3             393
>   #define ENET_MAX               400
>   
> -#define FEC_MAX_FRAME_SIZE 2032
> -
> -#define FEC_INT_HB      (1 << 31)
> -#define FEC_INT_BABR    (1 << 30)
> -#define FEC_INT_BABT    (1 << 29)
> -#define FEC_INT_GRA     (1 << 28)
> -#define FEC_INT_TXF     (1 << 27)
> -#define FEC_INT_TXB     (1 << 26)
> -#define FEC_INT_RXF     (1 << 25)
> -#define FEC_INT_RXB     (1 << 24)
> -#define FEC_INT_MII     (1 << 23)
> -#define FEC_INT_EBERR   (1 << 22)
> -#define FEC_INT_LC      (1 << 21)
> -#define FEC_INT_RL      (1 << 20)
> -#define FEC_INT_UN      (1 << 19)
> +#define ENET_MAX_FRAME_SIZE    2032
> +
> +/* EIR and EIMR */
> +#define ENET_INT_HB            (1 << 31)
> +#define ENET_INT_BABR          (1 << 30)
> +#define ENET_INT_BABT          (1 << 29)
> +#define ENET_INT_GRA           (1 << 28)
> +#define ENET_INT_TXF           (1 << 27)
> +#define ENET_INT_TXB           (1 << 26)
> +#define ENET_INT_RXF           (1 << 25)
> +#define ENET_INT_RXB           (1 << 24)
> +#define ENET_INT_MII           (1 << 23)
> +#define ENET_INT_EBERR         (1 << 22)
> +#define ENET_INT_LC            (1 << 21)
> +#define ENET_INT_RL            (1 << 20)
> +#define ENET_INT_UN            (1 << 19)

The above renaming seems cause lots of unnecessary changes above which 
may brings issue when backporint patches to -stable. Can we just keep 
this, and all ENET_*** should be used after we're sure we are ENET?

> +#define ENET_INT_PLR           (1 << 18)
> +#define ENET_INT_WAKEUP        (1 << 17)
> +#define ENET_INT_TS_AVAIL      (1 << 16)
> +#define ENET_INT_TS_TIMER      (1 << 15)
> +
> +#define ENET_INT_MAC           (ENET_INT_HB | ENET_INT_BABR | ENET_INT_BABT | \
> +                                ENET_INT_GRA | ENET_INT_TXF | ENET_INT_TXB | \
> +                                ENET_INT_RXF | ENET_INT_RXB | ENET_INT_MII | \
> +                                ENET_INT_EBERR | ENET_INT_LC | ENET_INT_RL | \
> +                                ENET_INT_UN | ENET_INT_PLR | ENET_INT_WAKEUP | \
> +                                ENET_INT_TS_AVAIL)
>   
>   /* RDAR */
>   #define ENET_RDAR_RDAR         (1 << 24)
> @@ -79,8 +118,54 @@
>   /* TDAR */
>   #define ENET_TDAR_TDAR         (1 << 24)
>   
> -#define FEC_EN                 (1 << 1)
> -#define FEC_RESET              (1 << 0)
> +/* ECR */
> +#define ENET_ECR_RESET         (1 << 0)
> +#define ENET_ECR_ETHEREN       (1 << 1)
> +#define ENET_ECR_MAGICEN       (1 << 2)
> +#define ENET_ECR_SLEEP         (1 << 3)
> +#define ENET_ECR_EN1588        (1 << 4)
> +#define ENET_ECR_SPEED         (1 << 5)
> +#define ENET_ECR_DBGEN         (1 << 6)
> +#define ENET_ECR_STOPEN        (1 << 7)
> +#define ENET_ECR_DSBWP         (1 << 8)
> +
> +/* MIBC */
> +#define ENET_MIBC_MIB_DIS      (1 << 31)
> +#define ENET_MIBC_MIB_IDLE     (1 << 30)
> +#define ENET_MIBC_MIB_CLEAR    (1 << 29)
> +
> +/* RCR */
> +#define ENET_RCR_LOOP          (1 << 0)
> +#define ENET_RCR_DRT           (1 << 1)
> +#define ENET_RCR_MII_MODE      (1 << 2)
> +#define ENET_RCR_PROM          (1 << 3)
> +#define ENET_RCR_BC_REJ        (1 << 4)
> +#define ENET_RCR_FCE           (1 << 5)
> +#define ENET_RCR_RGMII_EN      (1 << 6)
> +#define ENET_RCR_RMII_MODE     (1 << 8)
> +#define ENET_RCR_RMII_10T      (1 << 9)
> +#define ENET_RCR_PADEN         (1 << 12)
> +#define ENET_RCR_PAUFWD        (1 << 13)
> +#define ENET_RCR_CRCFWD        (1 << 14)
> +#define ENET_RCR_CFEN          (1 << 15)
> +#define ENET_RCR_MAX_FL_SHIFT  (16)
> +#define ENET_RCR_MAX_FL_LENGTH (14)
> +#define ENET_RCR_NLC           (1 << 30)
> +#define ENET_RCR_GRS           (1 << 31)
> +
> +/* TCR */
> +#define ENET_TCR_GTS           (1 << 0)
> +#define ENET_TCR_FDEN          (1 << 2)
> +#define ENET_TCR_TFC_PAUSE     (1 << 3)
> +#define ENET_TCR_RFC_PAUSE     (1 << 4)
> +#define ENET_TCR_ADDSEL_SHIFT  (5)
> +#define ENET_TCR_ADDSEL_LENGTH (3)
> +#define ENET_TCR_CRCFWD        (1 << 9)
> +
> +/* RDSR */
> +#define ENET_TWFR_TFWR_SHIFT   (0)
> +#define ENET_TWFR_TFWR_LENGTH  (6)
> +#define ENET_TWFR_STRFWD       (1 << 8)
>   
>   /* Buffer Descriptor.  */
>   typedef struct {
> @@ -89,22 +174,60 @@ typedef struct {
>       uint32_t data;
>   } IMXFECBufDesc;
>   
> -#define FEC_BD_R    (1 << 15)
> -#define FEC_BD_E    (1 << 15)
> -#define FEC_BD_O1   (1 << 14)
> -#define FEC_BD_W    (1 << 13)
> -#define FEC_BD_O2   (1 << 12)
> -#define FEC_BD_L    (1 << 11)
> -#define FEC_BD_TC   (1 << 10)
> -#define FEC_BD_ABC  (1 << 9)
> -#define FEC_BD_M    (1 << 8)
> -#define FEC_BD_BC   (1 << 7)
> -#define FEC_BD_MC   (1 << 6)
> -#define FEC_BD_LG   (1 << 5)
> -#define FEC_BD_NO   (1 << 4)
> -#define FEC_BD_CR   (1 << 2)
> -#define FEC_BD_OV   (1 << 1)
> -#define FEC_BD_TR   (1 << 0)
> +#define ENET_BD_R              (1 << 15)
> +#define ENET_BD_E              (1 << 15)
> +#define ENET_BD_O1             (1 << 14)
> +#define ENET_BD_W              (1 << 13)
> +#define ENET_BD_O2             (1 << 12)
> +#define ENET_BD_L              (1 << 11)
> +#define ENET_BD_TC             (1 << 10)
> +#define ENET_BD_ABC            (1 << 9)
> +#define ENET_BD_M              (1 << 8)
> +#define ENET_BD_BC             (1 << 7)
> +#define ENET_BD_MC             (1 << 6)
> +#define ENET_BD_LG             (1 << 5)
> +#define ENET_BD_NO             (1 << 4)
> +#define ENET_BD_CR             (1 << 2)
> +#define ENET_BD_OV             (1 << 1)
> +#define ENET_BD_TR             (1 << 0)
> +
> +typedef struct {
> +    uint16_t length;
> +    uint16_t flags;
> +    uint32_t data;
> +    uint16_t status;
> +    uint16_t option;
> +    uint16_t checksum;
> +    uint16_t head_proto;
> +    uint32_t last_buffer;
> +    uint32_t timestamp;
> +    uint32_t reserved[2];
> +} IMXENETBufDesc;
> +
> +#define ENET_BD_ME             (1 << 15)
> +#define ENET_BD_TX_INT         (1 << 14)
> +#define ENET_BD_TS             (1 << 13)
> +#define ENET_BD_PINS           (1 << 12)
> +#define ENET_BD_IINS           (1 << 11)
> +#define ENET_BD_PE             (1 << 10)
> +#define ENET_BD_CE             (1 << 9)
> +#define ENET_BD_UC             (1 << 8)
> +#define ENET_BD_RX_INT         (1 << 7)
> +
> +#define ENET_BD_TXE            (1 << 15)
> +#define ENET_BD_UE             (1 << 13)
> +#define ENET_BD_EE             (1 << 12)
> +#define ENET_BD_FE             (1 << 11)
> +#define ENET_BD_LCE            (1 << 10)
> +#define ENET_BD_OE             (1 << 9)
> +#define ENET_BD_TSE            (1 << 8)
> +#define ENET_BD_ICE            (1 << 5)
> +#define ENET_BD_PCR            (1 << 4)
> +#define ENET_BD_VLAN           (1 << 2)
> +#define ENET_BD_IPV6           (1 << 1)
> +#define ENET_BD_FRAG           (1 << 0)
> +
> +#define ENET_BD_BDU            (1 << 31)
>   
>   typedef struct IMXFECState {
>       /*< private >*/
> @@ -113,7 +236,7 @@ typedef struct IMXFECState {
>       /*< public >*/
>       NICState *nic;
>       NICConf conf;
> -    qemu_irq irq;
> +    qemu_irq irq[2];
>       MemoryRegion iomem;
>   
>       uint32_t regs[ENET_MAX];
> @@ -125,6 +248,8 @@ typedef struct IMXFECState {
>       uint32_t phy_advertise;
>       uint32_t phy_int;
>       uint32_t phy_int_mask;
> +
> +    bool is_fec;
>   } IMXFECState;
>   
>   #endif
Jean-Christophe Dubois May 19, 2016, 6:14 p.m. UTC | #2
Le 19/05/2016 05:48, Jason Wang a écrit :
>
>
> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>> The ENET device (present in i.MX6) is "derived" from FEC and backward
>> compatible with it.
>>
>> This patch adds the necessary support of the added feature in the ENET
>> device to allow Linux to use it (on supported processors).
>>
>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>> ---
>>
>> Changes since v1:
>>   * Not present on v1
>>     Changes since v2:
>>   * Not present on v2
>>   Changes since v3:
>>   * Separate and fix the 2 supported interrupts
>>
>>   hw/arm/fsl-imx25.c       |   3 +
>>   hw/net/imx_fec.c         | 713 
>> ++++++++++++++++++++++++++++++++++++++---------
>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>   3 files changed, 745 insertions(+), 166 deletions(-)
>
> [...]
>
>>   -static Property imx_fec_properties[] = {
>> +static Property imx_eth_properties[] = {
>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>       DEFINE_PROP_END_OF_LIST(),
>>   };
>
> It's ok to decide with "is-fec", but is it better to use a new type 
> for that?

Well, there is a lot of common code between FEC and ENET because ENET is 
basically backward compatible with FEC. So most/all of the FEC code 
needs to go in the ENET device.

I thought this way of doing thing was the best way to avoid duplicating 
things.

>
>>   -static void imx_fec_class_init(ObjectClass *klass, void *data)
>> +static void imx_eth_class_init(ObjectClass *klass, void *data)
>>   {
>>       DeviceClass *dc = DEVICE_CLASS(klass);
>>   -    dc->vmsd = &vmstate_imx_fec;
>> -    dc->reset = imx_fec_reset;
>> -    dc->props = imx_fec_properties;
>> -    dc->realize = imx_fec_realize;
>> -    dc->desc = "i.MX FEC Ethernet Controller";
>> +    dc->vmsd    = &vmstate_imx_eth;
>> +    dc->reset   = imx_eth_reset;
>> +    dc->props   = imx_eth_properties;
>> +    dc->realize = imx_eth_realize;
>> +    dc->desc    = "i.MX FEC/ENET Ethernet Controller";
>>   }
>>   -static const TypeInfo imx_fec_info = {
>> -    .name = TYPE_IMX_FEC,
>> -    .parent = TYPE_SYS_BUS_DEVICE,
>> +static const TypeInfo imx_eth_info = {
>> +    .name          = TYPE_IMX_FEC,
>> +    .parent        = TYPE_SYS_BUS_DEVICE,
>>       .instance_size = sizeof(IMXFECState),
>> -    .class_init = imx_fec_class_init,
>> +    .class_init    = imx_eth_class_init,
>>   };
>>   -static void imx_fec_register_types(void)
>> +static void imx_eth_register_types(void)
>>   {
>> -    type_register_static(&imx_fec_info);
>> +    type_register_static(&imx_eth_info);
>>   }
>>   -type_init(imx_fec_register_types)
>> +type_init(imx_eth_register_types)
>> diff --git a/include/hw/net/imx_fec.h b/include/hw/net/imx_fec.h
>> index 709f8a0..a09b7d7 100644
>> --- a/include/hw/net/imx_fec.h
>> +++ b/include/hw/net/imx_fec.h
>> @@ -1,5 +1,5 @@
>>   /*
>> - * i.MX Fast Ethernet Controller emulation.
>> + * i.MX FEC/ENET Ethernet Controller emulation.
>>    *
>>    * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
>>    *
>> @@ -53,25 +53,64 @@
>>   #define ENET_RDSR              96
>>   #define ENET_TDSR              97
>>   #define ENET_MRBR              98
>> +#define ENET_RSFL              100
>> +#define ENET_RSEM              101
>> +#define ENET_RAEM              102
>> +#define ENET_RAFL              103
>> +#define ENET_TSEM              104
>> +#define ENET_TAEM              105
>> +#define ENET_TAFL              106
>> +#define ENET_TIPG              107
>> +#define ENET_FTRL              108
>> +#define ENET_TACC              112
>> +#define ENET_RACC              113
>>   #define ENET_MIIGSK_CFGR       192
>>   #define ENET_MIIGSK_ENR        194
>> +#define ENET_ATCR              256
>> +#define ENET_ATVR              257
>> +#define ENET_ATOFF             258
>> +#define ENET_ATPER             259
>> +#define ENET_ATCOR             260
>> +#define ENET_ATINC             261
>> +#define ENET_ATSTMP            262
>> +#define ENET_TGSR              385
>> +#define ENET_TCSR0             386
>> +#define ENET_TCCR0             387
>> +#define ENET_TCSR1             388
>> +#define ENET_TCCR1             389
>> +#define ENET_TCSR2             390
>> +#define ENET_TCCR2             391
>> +#define ENET_TCSR3             392
>> +#define ENET_TCCR3             393
>>   #define ENET_MAX               400
>>   -#define FEC_MAX_FRAME_SIZE 2032
>> -
>> -#define FEC_INT_HB      (1 << 31)
>> -#define FEC_INT_BABR    (1 << 30)
>> -#define FEC_INT_BABT    (1 << 29)
>> -#define FEC_INT_GRA     (1 << 28)
>> -#define FEC_INT_TXF     (1 << 27)
>> -#define FEC_INT_TXB     (1 << 26)
>> -#define FEC_INT_RXF     (1 << 25)
>> -#define FEC_INT_RXB     (1 << 24)
>> -#define FEC_INT_MII     (1 << 23)
>> -#define FEC_INT_EBERR   (1 << 22)
>> -#define FEC_INT_LC      (1 << 21)
>> -#define FEC_INT_RL      (1 << 20)
>> -#define FEC_INT_UN      (1 << 19)
>> +#define ENET_MAX_FRAME_SIZE    2032
>> +
>> +/* EIR and EIMR */
>> +#define ENET_INT_HB            (1 << 31)
>> +#define ENET_INT_BABR          (1 << 30)
>> +#define ENET_INT_BABT          (1 << 29)
>> +#define ENET_INT_GRA           (1 << 28)
>> +#define ENET_INT_TXF           (1 << 27)
>> +#define ENET_INT_TXB           (1 << 26)
>> +#define ENET_INT_RXF           (1 << 25)
>> +#define ENET_INT_RXB           (1 << 24)
>> +#define ENET_INT_MII           (1 << 23)
>> +#define ENET_INT_EBERR         (1 << 22)
>> +#define ENET_INT_LC            (1 << 21)
>> +#define ENET_INT_RL            (1 << 20)
>> +#define ENET_INT_UN            (1 << 19)
>
> The above renaming seems cause lots of unnecessary changes above which 
> may brings issue when backporint patches to -stable. Can we just keep 
> this, and all ENET_*** should be used after we're sure we are ENET?

What do you mean by "after we're sure we are ENET"?

ENET is the evolution of FEC to support Gb interface. FEC is more like a 
legacy device these days (for ARM9 family). So it seems we are better 
supporting ENET as default going forward.

>
>> +#define ENET_INT_PLR           (1 << 18)
>> +#define ENET_INT_WAKEUP        (1 << 17)
>> +#define ENET_INT_TS_AVAIL      (1 << 16)
>> +#define ENET_INT_TS_TIMER      (1 << 15)
>> +
>> +#define ENET_INT_MAC           (ENET_INT_HB | ENET_INT_BABR | 
>> ENET_INT_BABT | \
>> +                                ENET_INT_GRA | ENET_INT_TXF | 
>> ENET_INT_TXB | \
>> +                                ENET_INT_RXF | ENET_INT_RXB | 
>> ENET_INT_MII | \
>> +                                ENET_INT_EBERR | ENET_INT_LC | 
>> ENET_INT_RL | \
>> +                                ENET_INT_UN | ENET_INT_PLR | 
>> ENET_INT_WAKEUP | \
>> +                                ENET_INT_TS_AVAIL)
>>     /* RDAR */
>>   #define ENET_RDAR_RDAR         (1 << 24)
>> @@ -79,8 +118,54 @@
>>   /* TDAR */
>>   #define ENET_TDAR_TDAR         (1 << 24)
>>   -#define FEC_EN                 (1 << 1)
>> -#define FEC_RESET              (1 << 0)
>> +/* ECR */
>> +#define ENET_ECR_RESET         (1 << 0)
>> +#define ENET_ECR_ETHEREN       (1 << 1)
>> +#define ENET_ECR_MAGICEN       (1 << 2)
>> +#define ENET_ECR_SLEEP         (1 << 3)
>> +#define ENET_ECR_EN1588        (1 << 4)
>> +#define ENET_ECR_SPEED         (1 << 5)
>> +#define ENET_ECR_DBGEN         (1 << 6)
>> +#define ENET_ECR_STOPEN        (1 << 7)
>> +#define ENET_ECR_DSBWP         (1 << 8)
>> +
>> +/* MIBC */
>> +#define ENET_MIBC_MIB_DIS      (1 << 31)
>> +#define ENET_MIBC_MIB_IDLE     (1 << 30)
>> +#define ENET_MIBC_MIB_CLEAR    (1 << 29)
>> +
>> +/* RCR */
>> +#define ENET_RCR_LOOP          (1 << 0)
>> +#define ENET_RCR_DRT           (1 << 1)
>> +#define ENET_RCR_MII_MODE      (1 << 2)
>> +#define ENET_RCR_PROM          (1 << 3)
>> +#define ENET_RCR_BC_REJ        (1 << 4)
>> +#define ENET_RCR_FCE           (1 << 5)
>> +#define ENET_RCR_RGMII_EN      (1 << 6)
>> +#define ENET_RCR_RMII_MODE     (1 << 8)
>> +#define ENET_RCR_RMII_10T      (1 << 9)
>> +#define ENET_RCR_PADEN         (1 << 12)
>> +#define ENET_RCR_PAUFWD        (1 << 13)
>> +#define ENET_RCR_CRCFWD        (1 << 14)
>> +#define ENET_RCR_CFEN          (1 << 15)
>> +#define ENET_RCR_MAX_FL_SHIFT  (16)
>> +#define ENET_RCR_MAX_FL_LENGTH (14)
>> +#define ENET_RCR_NLC           (1 << 30)
>> +#define ENET_RCR_GRS           (1 << 31)
>> +
>> +/* TCR */
>> +#define ENET_TCR_GTS           (1 << 0)
>> +#define ENET_TCR_FDEN          (1 << 2)
>> +#define ENET_TCR_TFC_PAUSE     (1 << 3)
>> +#define ENET_TCR_RFC_PAUSE     (1 << 4)
>> +#define ENET_TCR_ADDSEL_SHIFT  (5)
>> +#define ENET_TCR_ADDSEL_LENGTH (3)
>> +#define ENET_TCR_CRCFWD        (1 << 9)
>> +
>> +/* RDSR */
>> +#define ENET_TWFR_TFWR_SHIFT   (0)
>> +#define ENET_TWFR_TFWR_LENGTH  (6)
>> +#define ENET_TWFR_STRFWD       (1 << 8)
>>     /* Buffer Descriptor.  */
>>   typedef struct {
>> @@ -89,22 +174,60 @@ typedef struct {
>>       uint32_t data;
>>   } IMXFECBufDesc;
>>   -#define FEC_BD_R    (1 << 15)
>> -#define FEC_BD_E    (1 << 15)
>> -#define FEC_BD_O1   (1 << 14)
>> -#define FEC_BD_W    (1 << 13)
>> -#define FEC_BD_O2   (1 << 12)
>> -#define FEC_BD_L    (1 << 11)
>> -#define FEC_BD_TC   (1 << 10)
>> -#define FEC_BD_ABC  (1 << 9)
>> -#define FEC_BD_M    (1 << 8)
>> -#define FEC_BD_BC   (1 << 7)
>> -#define FEC_BD_MC   (1 << 6)
>> -#define FEC_BD_LG   (1 << 5)
>> -#define FEC_BD_NO   (1 << 4)
>> -#define FEC_BD_CR   (1 << 2)
>> -#define FEC_BD_OV   (1 << 1)
>> -#define FEC_BD_TR   (1 << 0)
>> +#define ENET_BD_R              (1 << 15)
>> +#define ENET_BD_E              (1 << 15)
>> +#define ENET_BD_O1             (1 << 14)
>> +#define ENET_BD_W              (1 << 13)
>> +#define ENET_BD_O2             (1 << 12)
>> +#define ENET_BD_L              (1 << 11)
>> +#define ENET_BD_TC             (1 << 10)
>> +#define ENET_BD_ABC            (1 << 9)
>> +#define ENET_BD_M              (1 << 8)
>> +#define ENET_BD_BC             (1 << 7)
>> +#define ENET_BD_MC             (1 << 6)
>> +#define ENET_BD_LG             (1 << 5)
>> +#define ENET_BD_NO             (1 << 4)
>> +#define ENET_BD_CR             (1 << 2)
>> +#define ENET_BD_OV             (1 << 1)
>> +#define ENET_BD_TR             (1 << 0)
>> +
>> +typedef struct {
>> +    uint16_t length;
>> +    uint16_t flags;
>> +    uint32_t data;
>> +    uint16_t status;
>> +    uint16_t option;
>> +    uint16_t checksum;
>> +    uint16_t head_proto;
>> +    uint32_t last_buffer;
>> +    uint32_t timestamp;
>> +    uint32_t reserved[2];
>> +} IMXENETBufDesc;
>> +
>> +#define ENET_BD_ME             (1 << 15)
>> +#define ENET_BD_TX_INT         (1 << 14)
>> +#define ENET_BD_TS             (1 << 13)
>> +#define ENET_BD_PINS           (1 << 12)
>> +#define ENET_BD_IINS           (1 << 11)
>> +#define ENET_BD_PE             (1 << 10)
>> +#define ENET_BD_CE             (1 << 9)
>> +#define ENET_BD_UC             (1 << 8)
>> +#define ENET_BD_RX_INT         (1 << 7)
>> +
>> +#define ENET_BD_TXE            (1 << 15)
>> +#define ENET_BD_UE             (1 << 13)
>> +#define ENET_BD_EE             (1 << 12)
>> +#define ENET_BD_FE             (1 << 11)
>> +#define ENET_BD_LCE            (1 << 10)
>> +#define ENET_BD_OE             (1 << 9)
>> +#define ENET_BD_TSE            (1 << 8)
>> +#define ENET_BD_ICE            (1 << 5)
>> +#define ENET_BD_PCR            (1 << 4)
>> +#define ENET_BD_VLAN           (1 << 2)
>> +#define ENET_BD_IPV6           (1 << 1)
>> +#define ENET_BD_FRAG           (1 << 0)
>> +
>> +#define ENET_BD_BDU            (1 << 31)
>>     typedef struct IMXFECState {
>>       /*< private >*/
>> @@ -113,7 +236,7 @@ typedef struct IMXFECState {
>>       /*< public >*/
>>       NICState *nic;
>>       NICConf conf;
>> -    qemu_irq irq;
>> +    qemu_irq irq[2];
>>       MemoryRegion iomem;
>>         uint32_t regs[ENET_MAX];
>> @@ -125,6 +248,8 @@ typedef struct IMXFECState {
>>       uint32_t phy_advertise;
>>       uint32_t phy_int;
>>       uint32_t phy_int_mask;
>> +
>> +    bool is_fec;
>>   } IMXFECState;
>>     #endif
>
>
Peter Maydell May 19, 2016, 6:37 p.m. UTC | #3
On 19 May 2016 at 19:14, Jean-Christophe DUBOIS <jcd@tribudubois.net> wrote:
> Le 19/05/2016 05:48, Jason Wang a écrit :
>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>
>> It's ok to decide with "is-fec", but is it better to use a new type for
>> that?
>
>
> Well, there is a lot of common code between FEC and ENET because ENET is
> basically backward compatible with FEC. So most/all of the FEC code needs to
> go in the ENET device.
>
> I thought this way of doing thing was the best way to avoid duplicating
> things.

Right, but usually we have different device types, even if under
the hood it's the same code using a bool to decide what to do
(see for instance hw/display/pl110.c, which provides 3 devices
which are all pretty similar). This means that the users of your
device don't need to care that the FEC is an ENET device with
a flag to say "be like an FEC device", they just instantiate
the kind of device they want.

>> The above renaming seems cause lots of unnecessary changes above which may
>> brings issue when backporint patches to -stable. Can we just keep this, and
>> all ENET_*** should be used after we're sure we are ENET?
>
>
> What do you mean by "after we're sure we are ENET"?
>
> ENET is the evolution of FEC to support Gb interface. FEC is more like a
> legacy device these days (for ARM9 family). So it seems we are better
> supporting ENET as default going forward.

I don't mind if we rename the functions, #defines, etc, but if
we do can we have a patch which does that renaming and only that
renaming, so it's easy to review?

thanks
-- PMM
Jason Wang May 20, 2016, 2:34 a.m. UTC | #4
On 2016年05月20日 02:14, Jean-Christophe DUBOIS wrote:
> Le 19/05/2016 05:48, Jason Wang a écrit :
>>
>>
>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>> The ENET device (present in i.MX6) is "derived" from FEC and backward
>>> compatible with it.
>>>
>>> This patch adds the necessary support of the added feature in the ENET
>>> device to allow Linux to use it (on supported processors).
>>>
>>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>>> ---
>>>
>>> Changes since v1:
>>>   * Not present on v1
>>>     Changes since v2:
>>>   * Not present on v2
>>>   Changes since v3:
>>>   * Separate and fix the 2 supported interrupts
>>>
>>>   hw/arm/fsl-imx25.c       |   3 +
>>>   hw/net/imx_fec.c         | 713 
>>> ++++++++++++++++++++++++++++++++++++++---------
>>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>>   3 files changed, 745 insertions(+), 166 deletions(-)
>>
>> [...]
>>
>>>   -static Property imx_fec_properties[] = {
>>> +static Property imx_eth_properties[] = {
>>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>>       DEFINE_PROP_END_OF_LIST(),
>>>   };
>>
>> It's ok to decide with "is-fec", but is it better to use a new type 
>> for that?
>
> Well, there is a lot of common code between FEC and ENET because ENET 
> is basically backward compatible with FEC. So most/all of the FEC code 
> needs to go in the ENET device.
>
> I thought this way of doing thing was the best way to avoid 
> duplicating things.

You can still share almost all the codes. E.g you can have a look at 
e1000.c which have 3 types of rather similar devices.

Another question not relate to this patch, I saw version were bumped for 
vmstate version. Is it better to keep the vmstate for FEC and using a 
new vmstate for ENET (register array).

>
>>
>>>   -static void imx_fec_class_init(ObjectClass *klass, void *data)
>>> +static void imx_eth_class_init(ObjectClass *klass, void *data)
>>>   {
>>>       DeviceClass *dc = DEVICE_CLASS(klass);
>>>   -    dc->vmsd = &vmstate_imx_fec;
>>> -    dc->reset = imx_fec_reset;
>>> -    dc->props = imx_fec_properties;
>>> -    dc->realize = imx_fec_realize;
>>> -    dc->desc = "i.MX FEC Ethernet Controller";
>>> +    dc->vmsd    = &vmstate_imx_eth;
>>> +    dc->reset   = imx_eth_reset;
>>> +    dc->props   = imx_eth_properties;
>>> +    dc->realize = imx_eth_realize;
>>> +    dc->desc    = "i.MX FEC/ENET Ethernet Controller";
>>>   }
>>>   -static const TypeInfo imx_fec_info = {
>>> -    .name = TYPE_IMX_FEC,
>>> -    .parent = TYPE_SYS_BUS_DEVICE,
>>> +static const TypeInfo imx_eth_info = {
>>> +    .name          = TYPE_IMX_FEC,
>>> +    .parent        = TYPE_SYS_BUS_DEVICE,
>>>       .instance_size = sizeof(IMXFECState),
>>> -    .class_init = imx_fec_class_init,
>>> +    .class_init    = imx_eth_class_init,
>>>   };
>>>   -static void imx_fec_register_types(void)
>>> +static void imx_eth_register_types(void)
>>>   {
>>> -    type_register_static(&imx_fec_info);
>>> +    type_register_static(&imx_eth_info);
>>>   }
>>>   -type_init(imx_fec_register_types)
>>> +type_init(imx_eth_register_types)
>>> diff --git a/include/hw/net/imx_fec.h b/include/hw/net/imx_fec.h
>>> index 709f8a0..a09b7d7 100644
>>> --- a/include/hw/net/imx_fec.h
>>> +++ b/include/hw/net/imx_fec.h
>>> @@ -1,5 +1,5 @@
>>>   /*
>>> - * i.MX Fast Ethernet Controller emulation.
>>> + * i.MX FEC/ENET Ethernet Controller emulation.
>>>    *
>>>    * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
>>>    *
>>> @@ -53,25 +53,64 @@
>>>   #define ENET_RDSR              96
>>>   #define ENET_TDSR              97
>>>   #define ENET_MRBR              98
>>> +#define ENET_RSFL              100
>>> +#define ENET_RSEM              101
>>> +#define ENET_RAEM              102
>>> +#define ENET_RAFL              103
>>> +#define ENET_TSEM              104
>>> +#define ENET_TAEM              105
>>> +#define ENET_TAFL              106
>>> +#define ENET_TIPG              107
>>> +#define ENET_FTRL              108
>>> +#define ENET_TACC              112
>>> +#define ENET_RACC              113
>>>   #define ENET_MIIGSK_CFGR       192
>>>   #define ENET_MIIGSK_ENR        194
>>> +#define ENET_ATCR              256
>>> +#define ENET_ATVR              257
>>> +#define ENET_ATOFF             258
>>> +#define ENET_ATPER             259
>>> +#define ENET_ATCOR             260
>>> +#define ENET_ATINC             261
>>> +#define ENET_ATSTMP            262
>>> +#define ENET_TGSR              385
>>> +#define ENET_TCSR0             386
>>> +#define ENET_TCCR0             387
>>> +#define ENET_TCSR1             388
>>> +#define ENET_TCCR1             389
>>> +#define ENET_TCSR2             390
>>> +#define ENET_TCCR2             391
>>> +#define ENET_TCSR3             392
>>> +#define ENET_TCCR3             393
>>>   #define ENET_MAX               400
>>>   -#define FEC_MAX_FRAME_SIZE 2032
>>> -
>>> -#define FEC_INT_HB      (1 << 31)
>>> -#define FEC_INT_BABR    (1 << 30)
>>> -#define FEC_INT_BABT    (1 << 29)
>>> -#define FEC_INT_GRA     (1 << 28)
>>> -#define FEC_INT_TXF     (1 << 27)
>>> -#define FEC_INT_TXB     (1 << 26)
>>> -#define FEC_INT_RXF     (1 << 25)
>>> -#define FEC_INT_RXB     (1 << 24)
>>> -#define FEC_INT_MII     (1 << 23)
>>> -#define FEC_INT_EBERR   (1 << 22)
>>> -#define FEC_INT_LC      (1 << 21)
>>> -#define FEC_INT_RL      (1 << 20)
>>> -#define FEC_INT_UN      (1 << 19)
>>> +#define ENET_MAX_FRAME_SIZE    2032
>>> +
>>> +/* EIR and EIMR */
>>> +#define ENET_INT_HB            (1 << 31)
>>> +#define ENET_INT_BABR          (1 << 30)
>>> +#define ENET_INT_BABT          (1 << 29)
>>> +#define ENET_INT_GRA           (1 << 28)
>>> +#define ENET_INT_TXF           (1 << 27)
>>> +#define ENET_INT_TXB           (1 << 26)
>>> +#define ENET_INT_RXF           (1 << 25)
>>> +#define ENET_INT_RXB           (1 << 24)
>>> +#define ENET_INT_MII           (1 << 23)
>>> +#define ENET_INT_EBERR         (1 << 22)
>>> +#define ENET_INT_LC            (1 << 21)
>>> +#define ENET_INT_RL            (1 << 20)
>>> +#define ENET_INT_UN            (1 << 19)
>>
>> The above renaming seems cause lots of unnecessary changes above 
>> which may brings issue when backporint patches to -stable. Can we 
>> just keep this, and all ENET_*** should be used after we're sure we 
>> are ENET?
>
> What do you mean by "after we're sure we are ENET"?

I mean "is_fec" is false here.

>
> ENET is the evolution of FEC to support Gb interface. FEC is more like 
> a legacy device these days (for ARM9 family). So it seems we are 
> better supporting ENET as default going forward.

Since Peter does not care about this, we're ok here.

Thanks

>
>>
>>> +#define ENET_INT_PLR           (1 << 18)
>>> +#define ENET_INT_WAKEUP        (1 << 17)
>>> +#define ENET_INT_TS_AVAIL      (1 << 16)
>>> +#define ENET_INT_TS_TIMER      (1 << 15)
>>> +
>>> +#define ENET_INT_MAC           (ENET_INT_HB | ENET_INT_BABR | 
>>> ENET_INT_BABT | \
>>> +                                ENET_INT_GRA | ENET_INT_TXF | 
>>> ENET_INT_TXB | \
>>> +                                ENET_INT_RXF | ENET_INT_RXB | 
>>> ENET_INT_MII | \
>>> +                                ENET_INT_EBERR | ENET_INT_LC | 
>>> ENET_INT_RL | \
>>> +                                ENET_INT_UN | ENET_INT_PLR | 
>>> ENET_INT_WAKEUP | \
>>> +                                ENET_INT_TS_AVAIL)
>>>     /* RDAR */
>>>   #define ENET_RDAR_RDAR         (1 << 24)
>>> @@ -79,8 +118,54 @@
>>>   /* TDAR */
>>>   #define ENET_TDAR_TDAR         (1 << 24)
>>>   -#define FEC_EN                 (1 << 1)
>>> -#define FEC_RESET              (1 << 0)
>>> +/* ECR */
>>> +#define ENET_ECR_RESET         (1 << 0)
>>> +#define ENET_ECR_ETHEREN       (1 << 1)
>>> +#define ENET_ECR_MAGICEN       (1 << 2)
>>> +#define ENET_ECR_SLEEP         (1 << 3)
>>> +#define ENET_ECR_EN1588        (1 << 4)
>>> +#define ENET_ECR_SPEED         (1 << 5)
>>> +#define ENET_ECR_DBGEN         (1 << 6)
>>> +#define ENET_ECR_STOPEN        (1 << 7)
>>> +#define ENET_ECR_DSBWP         (1 << 8)
>>> +
>>> +/* MIBC */
>>> +#define ENET_MIBC_MIB_DIS      (1 << 31)
>>> +#define ENET_MIBC_MIB_IDLE     (1 << 30)
>>> +#define ENET_MIBC_MIB_CLEAR    (1 << 29)
>>> +
>>> +/* RCR */
>>> +#define ENET_RCR_LOOP          (1 << 0)
>>> +#define ENET_RCR_DRT           (1 << 1)
>>> +#define ENET_RCR_MII_MODE      (1 << 2)
>>> +#define ENET_RCR_PROM          (1 << 3)
>>> +#define ENET_RCR_BC_REJ        (1 << 4)
>>> +#define ENET_RCR_FCE           (1 << 5)
>>> +#define ENET_RCR_RGMII_EN      (1 << 6)
>>> +#define ENET_RCR_RMII_MODE     (1 << 8)
>>> +#define ENET_RCR_RMII_10T      (1 << 9)
>>> +#define ENET_RCR_PADEN         (1 << 12)
>>> +#define ENET_RCR_PAUFWD        (1 << 13)
>>> +#define ENET_RCR_CRCFWD        (1 << 14)
>>> +#define ENET_RCR_CFEN          (1 << 15)
>>> +#define ENET_RCR_MAX_FL_SHIFT  (16)
>>> +#define ENET_RCR_MAX_FL_LENGTH (14)
>>> +#define ENET_RCR_NLC           (1 << 30)
>>> +#define ENET_RCR_GRS           (1 << 31)
>>> +
>>> +/* TCR */
>>> +#define ENET_TCR_GTS           (1 << 0)
>>> +#define ENET_TCR_FDEN          (1 << 2)
>>> +#define ENET_TCR_TFC_PAUSE     (1 << 3)
>>> +#define ENET_TCR_RFC_PAUSE     (1 << 4)
>>> +#define ENET_TCR_ADDSEL_SHIFT  (5)
>>> +#define ENET_TCR_ADDSEL_LENGTH (3)
>>> +#define ENET_TCR_CRCFWD        (1 << 9)
>>> +
>>> +/* RDSR */
>>> +#define ENET_TWFR_TFWR_SHIFT   (0)
>>> +#define ENET_TWFR_TFWR_LENGTH  (6)
>>> +#define ENET_TWFR_STRFWD       (1 << 8)
>>>     /* Buffer Descriptor.  */
>>>   typedef struct {
>>> @@ -89,22 +174,60 @@ typedef struct {
>>>       uint32_t data;
>>>   } IMXFECBufDesc;
>>>   -#define FEC_BD_R    (1 << 15)
>>> -#define FEC_BD_E    (1 << 15)
>>> -#define FEC_BD_O1   (1 << 14)
>>> -#define FEC_BD_W    (1 << 13)
>>> -#define FEC_BD_O2   (1 << 12)
>>> -#define FEC_BD_L    (1 << 11)
>>> -#define FEC_BD_TC   (1 << 10)
>>> -#define FEC_BD_ABC  (1 << 9)
>>> -#define FEC_BD_M    (1 << 8)
>>> -#define FEC_BD_BC   (1 << 7)
>>> -#define FEC_BD_MC   (1 << 6)
>>> -#define FEC_BD_LG   (1 << 5)
>>> -#define FEC_BD_NO   (1 << 4)
>>> -#define FEC_BD_CR   (1 << 2)
>>> -#define FEC_BD_OV   (1 << 1)
>>> -#define FEC_BD_TR   (1 << 0)
>>> +#define ENET_BD_R              (1 << 15)
>>> +#define ENET_BD_E              (1 << 15)
>>> +#define ENET_BD_O1             (1 << 14)
>>> +#define ENET_BD_W              (1 << 13)
>>> +#define ENET_BD_O2             (1 << 12)
>>> +#define ENET_BD_L              (1 << 11)
>>> +#define ENET_BD_TC             (1 << 10)
>>> +#define ENET_BD_ABC            (1 << 9)
>>> +#define ENET_BD_M              (1 << 8)
>>> +#define ENET_BD_BC             (1 << 7)
>>> +#define ENET_BD_MC             (1 << 6)
>>> +#define ENET_BD_LG             (1 << 5)
>>> +#define ENET_BD_NO             (1 << 4)
>>> +#define ENET_BD_CR             (1 << 2)
>>> +#define ENET_BD_OV             (1 << 1)
>>> +#define ENET_BD_TR             (1 << 0)
>>> +
>>> +typedef struct {
>>> +    uint16_t length;
>>> +    uint16_t flags;
>>> +    uint32_t data;
>>> +    uint16_t status;
>>> +    uint16_t option;
>>> +    uint16_t checksum;
>>> +    uint16_t head_proto;
>>> +    uint32_t last_buffer;
>>> +    uint32_t timestamp;
>>> +    uint32_t reserved[2];
>>> +} IMXENETBufDesc;
>>> +
>>> +#define ENET_BD_ME             (1 << 15)
>>> +#define ENET_BD_TX_INT         (1 << 14)
>>> +#define ENET_BD_TS             (1 << 13)
>>> +#define ENET_BD_PINS           (1 << 12)
>>> +#define ENET_BD_IINS           (1 << 11)
>>> +#define ENET_BD_PE             (1 << 10)
>>> +#define ENET_BD_CE             (1 << 9)
>>> +#define ENET_BD_UC             (1 << 8)
>>> +#define ENET_BD_RX_INT         (1 << 7)
>>> +
>>> +#define ENET_BD_TXE            (1 << 15)
>>> +#define ENET_BD_UE             (1 << 13)
>>> +#define ENET_BD_EE             (1 << 12)
>>> +#define ENET_BD_FE             (1 << 11)
>>> +#define ENET_BD_LCE            (1 << 10)
>>> +#define ENET_BD_OE             (1 << 9)
>>> +#define ENET_BD_TSE            (1 << 8)
>>> +#define ENET_BD_ICE            (1 << 5)
>>> +#define ENET_BD_PCR            (1 << 4)
>>> +#define ENET_BD_VLAN           (1 << 2)
>>> +#define ENET_BD_IPV6           (1 << 1)
>>> +#define ENET_BD_FRAG           (1 << 0)
>>> +
>>> +#define ENET_BD_BDU            (1 << 31)
>>>     typedef struct IMXFECState {
>>>       /*< private >*/
>>> @@ -113,7 +236,7 @@ typedef struct IMXFECState {
>>>       /*< public >*/
>>>       NICState *nic;
>>>       NICConf conf;
>>> -    qemu_irq irq;
>>> +    qemu_irq irq[2];
>>>       MemoryRegion iomem;
>>>         uint32_t regs[ENET_MAX];
>>> @@ -125,6 +248,8 @@ typedef struct IMXFECState {
>>>       uint32_t phy_advertise;
>>>       uint32_t phy_int;
>>>       uint32_t phy_int_mask;
>>> +
>>> +    bool is_fec;
>>>   } IMXFECState;
>>>     #endif
>>
>>
>
Jean-Christophe Dubois May 20, 2016, 9:23 p.m. UTC | #5
Le 20/05/2016 04:34, Jason Wang a écrit :
>
>
> On 2016年05月20日 02:14, Jean-Christophe DUBOIS wrote:
>> Le 19/05/2016 05:48, Jason Wang a écrit :
>>>
>>>
>>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>>> The ENET device (present in i.MX6) is "derived" from FEC and backward
>>>> compatible with it.
>>>>
>>>> This patch adds the necessary support of the added feature in the ENET
>>>> device to allow Linux to use it (on supported processors).
>>>>
>>>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>>>> ---
>>>>
>>>> Changes since v1:
>>>>   * Not present on v1
>>>>     Changes since v2:
>>>>   * Not present on v2
>>>>   Changes since v3:
>>>>   * Separate and fix the 2 supported interrupts
>>>>
>>>>   hw/arm/fsl-imx25.c       |   3 +
>>>>   hw/net/imx_fec.c         | 713 
>>>> ++++++++++++++++++++++++++++++++++++++---------
>>>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>>>   3 files changed, 745 insertions(+), 166 deletions(-)
>>>
>>> [...]
>>>
>>>>   -static Property imx_fec_properties[] = {
>>>> +static Property imx_eth_properties[] = {
>>>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>>>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>>>       DEFINE_PROP_END_OF_LIST(),
>>>>   };
>>>
>>> It's ok to decide with "is-fec", but is it better to use a new type 
>>> for that?
>>
>> Well, there is a lot of common code between FEC and ENET because ENET 
>> is basically backward compatible with FEC. So most/all of the FEC 
>> code needs to go in the ENET device.
>>
>> I thought this way of doing thing was the best way to avoid 
>> duplicating things.
>
> You can still share almost all the codes. E.g you can have a look at 
> e1000.c which have 3 types of rather similar devices.

OK, I'll change it in next patch to match the pl110 model as proposed by 
Peter. No more additional property...

>
> Another question not relate to this patch, I saw version were bumped 
> for vmstate version. Is it better to keep the vmstate for FEC and 
> using a new vmstate for ENET (register array).

Well, as I moved the FEC to register array, the VMState structure has 
changed and therefore I believe the vmstate version needs to be bumped.

Am I wrong?

>
>>
>>>
>>>>   -static void imx_fec_class_init(ObjectClass *klass, void *data)
>>>> +static void imx_eth_class_init(ObjectClass *klass, void *data)
>>>>   {
>>>>       DeviceClass *dc = DEVICE_CLASS(klass);
>>>>   -    dc->vmsd = &vmstate_imx_fec;
>>>> -    dc->reset = imx_fec_reset;
>>>> -    dc->props = imx_fec_properties;
>>>> -    dc->realize = imx_fec_realize;
>>>> -    dc->desc = "i.MX FEC Ethernet Controller";
>>>> +    dc->vmsd    = &vmstate_imx_eth;
>>>> +    dc->reset   = imx_eth_reset;
>>>> +    dc->props   = imx_eth_properties;
>>>> +    dc->realize = imx_eth_realize;
>>>> +    dc->desc    = "i.MX FEC/ENET Ethernet Controller";
>>>>   }
>>>>   -static const TypeInfo imx_fec_info = {
>>>> -    .name = TYPE_IMX_FEC,
>>>> -    .parent = TYPE_SYS_BUS_DEVICE,
>>>> +static const TypeInfo imx_eth_info = {
>>>> +    .name          = TYPE_IMX_FEC,
>>>> +    .parent        = TYPE_SYS_BUS_DEVICE,
>>>>       .instance_size = sizeof(IMXFECState),
>>>> -    .class_init = imx_fec_class_init,
>>>> +    .class_init    = imx_eth_class_init,
>>>>   };
>>>>   -static void imx_fec_register_types(void)
>>>> +static void imx_eth_register_types(void)
>>>>   {
>>>> -    type_register_static(&imx_fec_info);
>>>> +    type_register_static(&imx_eth_info);
>>>>   }
>>>>   -type_init(imx_fec_register_types)
>>>> +type_init(imx_eth_register_types)
>>>> diff --git a/include/hw/net/imx_fec.h b/include/hw/net/imx_fec.h
>>>> index 709f8a0..a09b7d7 100644
>>>> --- a/include/hw/net/imx_fec.h
>>>> +++ b/include/hw/net/imx_fec.h
>>>> @@ -1,5 +1,5 @@
>>>>   /*
>>>> - * i.MX Fast Ethernet Controller emulation.
>>>> + * i.MX FEC/ENET Ethernet Controller emulation.
>>>>    *
>>>>    * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
>>>>    *
>>>> @@ -53,25 +53,64 @@
>>>>   #define ENET_RDSR              96
>>>>   #define ENET_TDSR              97
>>>>   #define ENET_MRBR              98
>>>> +#define ENET_RSFL              100
>>>> +#define ENET_RSEM              101
>>>> +#define ENET_RAEM              102
>>>> +#define ENET_RAFL              103
>>>> +#define ENET_TSEM              104
>>>> +#define ENET_TAEM              105
>>>> +#define ENET_TAFL              106
>>>> +#define ENET_TIPG              107
>>>> +#define ENET_FTRL              108
>>>> +#define ENET_TACC              112
>>>> +#define ENET_RACC              113
>>>>   #define ENET_MIIGSK_CFGR       192
>>>>   #define ENET_MIIGSK_ENR        194
>>>> +#define ENET_ATCR              256
>>>> +#define ENET_ATVR              257
>>>> +#define ENET_ATOFF             258
>>>> +#define ENET_ATPER             259
>>>> +#define ENET_ATCOR             260
>>>> +#define ENET_ATINC             261
>>>> +#define ENET_ATSTMP            262
>>>> +#define ENET_TGSR              385
>>>> +#define ENET_TCSR0             386
>>>> +#define ENET_TCCR0             387
>>>> +#define ENET_TCSR1             388
>>>> +#define ENET_TCCR1             389
>>>> +#define ENET_TCSR2             390
>>>> +#define ENET_TCCR2             391
>>>> +#define ENET_TCSR3             392
>>>> +#define ENET_TCCR3             393
>>>>   #define ENET_MAX               400
>>>>   -#define FEC_MAX_FRAME_SIZE 2032
>>>> -
>>>> -#define FEC_INT_HB      (1 << 31)
>>>> -#define FEC_INT_BABR    (1 << 30)
>>>> -#define FEC_INT_BABT    (1 << 29)
>>>> -#define FEC_INT_GRA     (1 << 28)
>>>> -#define FEC_INT_TXF     (1 << 27)
>>>> -#define FEC_INT_TXB     (1 << 26)
>>>> -#define FEC_INT_RXF     (1 << 25)
>>>> -#define FEC_INT_RXB     (1 << 24)
>>>> -#define FEC_INT_MII     (1 << 23)
>>>> -#define FEC_INT_EBERR   (1 << 22)
>>>> -#define FEC_INT_LC      (1 << 21)
>>>> -#define FEC_INT_RL      (1 << 20)
>>>> -#define FEC_INT_UN      (1 << 19)
>>>> +#define ENET_MAX_FRAME_SIZE    2032
>>>> +
>>>> +/* EIR and EIMR */
>>>> +#define ENET_INT_HB            (1 << 31)
>>>> +#define ENET_INT_BABR          (1 << 30)
>>>> +#define ENET_INT_BABT          (1 << 29)
>>>> +#define ENET_INT_GRA           (1 << 28)
>>>> +#define ENET_INT_TXF           (1 << 27)
>>>> +#define ENET_INT_TXB           (1 << 26)
>>>> +#define ENET_INT_RXF           (1 << 25)
>>>> +#define ENET_INT_RXB           (1 << 24)
>>>> +#define ENET_INT_MII           (1 << 23)
>>>> +#define ENET_INT_EBERR         (1 << 22)
>>>> +#define ENET_INT_LC            (1 << 21)
>>>> +#define ENET_INT_RL            (1 << 20)
>>>> +#define ENET_INT_UN            (1 << 19)
>>>
>>> The above renaming seems cause lots of unnecessary changes above 
>>> which may brings issue when backporint patches to -stable. Can we 
>>> just keep this, and all ENET_*** should be used after we're sure we 
>>> are ENET?
>>
>> What do you mean by "after we're sure we are ENET"?
>
> I mean "is_fec" is false here.
>
>>
>> ENET is the evolution of FEC to support Gb interface. FEC is more 
>> like a legacy device these days (for ARM9 family). So it seems we are 
>> better supporting ENET as default going forward.
>
> Since Peter does not care about this, we're ok here.

I'll make a renaming patch ...

>
> Thanks
>
>>
>>>
>>>> +#define ENET_INT_PLR           (1 << 18)
>>>> +#define ENET_INT_WAKEUP        (1 << 17)
>>>> +#define ENET_INT_TS_AVAIL      (1 << 16)
>>>> +#define ENET_INT_TS_TIMER      (1 << 15)
>>>> +
>>>> +#define ENET_INT_MAC           (ENET_INT_HB | ENET_INT_BABR | 
>>>> ENET_INT_BABT | \
>>>> +                                ENET_INT_GRA | ENET_INT_TXF | 
>>>> ENET_INT_TXB | \
>>>> +                                ENET_INT_RXF | ENET_INT_RXB | 
>>>> ENET_INT_MII | \
>>>> +                                ENET_INT_EBERR | ENET_INT_LC | 
>>>> ENET_INT_RL | \
>>>> +                                ENET_INT_UN | ENET_INT_PLR | 
>>>> ENET_INT_WAKEUP | \
>>>> +                                ENET_INT_TS_AVAIL)
>>>>     /* RDAR */
>>>>   #define ENET_RDAR_RDAR         (1 << 24)
>>>> @@ -79,8 +118,54 @@
>>>>   /* TDAR */
>>>>   #define ENET_TDAR_TDAR         (1 << 24)
>>>>   -#define FEC_EN                 (1 << 1)
>>>> -#define FEC_RESET              (1 << 0)
>>>> +/* ECR */
>>>> +#define ENET_ECR_RESET         (1 << 0)
>>>> +#define ENET_ECR_ETHEREN       (1 << 1)
>>>> +#define ENET_ECR_MAGICEN       (1 << 2)
>>>> +#define ENET_ECR_SLEEP         (1 << 3)
>>>> +#define ENET_ECR_EN1588        (1 << 4)
>>>> +#define ENET_ECR_SPEED         (1 << 5)
>>>> +#define ENET_ECR_DBGEN         (1 << 6)
>>>> +#define ENET_ECR_STOPEN        (1 << 7)
>>>> +#define ENET_ECR_DSBWP         (1 << 8)
>>>> +
>>>> +/* MIBC */
>>>> +#define ENET_MIBC_MIB_DIS      (1 << 31)
>>>> +#define ENET_MIBC_MIB_IDLE     (1 << 30)
>>>> +#define ENET_MIBC_MIB_CLEAR    (1 << 29)
>>>> +
>>>> +/* RCR */
>>>> +#define ENET_RCR_LOOP          (1 << 0)
>>>> +#define ENET_RCR_DRT           (1 << 1)
>>>> +#define ENET_RCR_MII_MODE      (1 << 2)
>>>> +#define ENET_RCR_PROM          (1 << 3)
>>>> +#define ENET_RCR_BC_REJ        (1 << 4)
>>>> +#define ENET_RCR_FCE           (1 << 5)
>>>> +#define ENET_RCR_RGMII_EN      (1 << 6)
>>>> +#define ENET_RCR_RMII_MODE     (1 << 8)
>>>> +#define ENET_RCR_RMII_10T      (1 << 9)
>>>> +#define ENET_RCR_PADEN         (1 << 12)
>>>> +#define ENET_RCR_PAUFWD        (1 << 13)
>>>> +#define ENET_RCR_CRCFWD        (1 << 14)
>>>> +#define ENET_RCR_CFEN          (1 << 15)
>>>> +#define ENET_RCR_MAX_FL_SHIFT  (16)
>>>> +#define ENET_RCR_MAX_FL_LENGTH (14)
>>>> +#define ENET_RCR_NLC           (1 << 30)
>>>> +#define ENET_RCR_GRS           (1 << 31)
>>>> +
>>>> +/* TCR */
>>>> +#define ENET_TCR_GTS           (1 << 0)
>>>> +#define ENET_TCR_FDEN          (1 << 2)
>>>> +#define ENET_TCR_TFC_PAUSE     (1 << 3)
>>>> +#define ENET_TCR_RFC_PAUSE     (1 << 4)
>>>> +#define ENET_TCR_ADDSEL_SHIFT  (5)
>>>> +#define ENET_TCR_ADDSEL_LENGTH (3)
>>>> +#define ENET_TCR_CRCFWD        (1 << 9)
>>>> +
>>>> +/* RDSR */
>>>> +#define ENET_TWFR_TFWR_SHIFT   (0)
>>>> +#define ENET_TWFR_TFWR_LENGTH  (6)
>>>> +#define ENET_TWFR_STRFWD       (1 << 8)
>>>>     /* Buffer Descriptor.  */
>>>>   typedef struct {
>>>> @@ -89,22 +174,60 @@ typedef struct {
>>>>       uint32_t data;
>>>>   } IMXFECBufDesc;
>>>>   -#define FEC_BD_R    (1 << 15)
>>>> -#define FEC_BD_E    (1 << 15)
>>>> -#define FEC_BD_O1   (1 << 14)
>>>> -#define FEC_BD_W    (1 << 13)
>>>> -#define FEC_BD_O2   (1 << 12)
>>>> -#define FEC_BD_L    (1 << 11)
>>>> -#define FEC_BD_TC   (1 << 10)
>>>> -#define FEC_BD_ABC  (1 << 9)
>>>> -#define FEC_BD_M    (1 << 8)
>>>> -#define FEC_BD_BC   (1 << 7)
>>>> -#define FEC_BD_MC   (1 << 6)
>>>> -#define FEC_BD_LG   (1 << 5)
>>>> -#define FEC_BD_NO   (1 << 4)
>>>> -#define FEC_BD_CR   (1 << 2)
>>>> -#define FEC_BD_OV   (1 << 1)
>>>> -#define FEC_BD_TR   (1 << 0)
>>>> +#define ENET_BD_R              (1 << 15)
>>>> +#define ENET_BD_E              (1 << 15)
>>>> +#define ENET_BD_O1             (1 << 14)
>>>> +#define ENET_BD_W              (1 << 13)
>>>> +#define ENET_BD_O2             (1 << 12)
>>>> +#define ENET_BD_L              (1 << 11)
>>>> +#define ENET_BD_TC             (1 << 10)
>>>> +#define ENET_BD_ABC            (1 << 9)
>>>> +#define ENET_BD_M              (1 << 8)
>>>> +#define ENET_BD_BC             (1 << 7)
>>>> +#define ENET_BD_MC             (1 << 6)
>>>> +#define ENET_BD_LG             (1 << 5)
>>>> +#define ENET_BD_NO             (1 << 4)
>>>> +#define ENET_BD_CR             (1 << 2)
>>>> +#define ENET_BD_OV             (1 << 1)
>>>> +#define ENET_BD_TR             (1 << 0)
>>>> +
>>>> +typedef struct {
>>>> +    uint16_t length;
>>>> +    uint16_t flags;
>>>> +    uint32_t data;
>>>> +    uint16_t status;
>>>> +    uint16_t option;
>>>> +    uint16_t checksum;
>>>> +    uint16_t head_proto;
>>>> +    uint32_t last_buffer;
>>>> +    uint32_t timestamp;
>>>> +    uint32_t reserved[2];
>>>> +} IMXENETBufDesc;
>>>> +
>>>> +#define ENET_BD_ME             (1 << 15)
>>>> +#define ENET_BD_TX_INT         (1 << 14)
>>>> +#define ENET_BD_TS             (1 << 13)
>>>> +#define ENET_BD_PINS           (1 << 12)
>>>> +#define ENET_BD_IINS           (1 << 11)
>>>> +#define ENET_BD_PE             (1 << 10)
>>>> +#define ENET_BD_CE             (1 << 9)
>>>> +#define ENET_BD_UC             (1 << 8)
>>>> +#define ENET_BD_RX_INT         (1 << 7)
>>>> +
>>>> +#define ENET_BD_TXE            (1 << 15)
>>>> +#define ENET_BD_UE             (1 << 13)
>>>> +#define ENET_BD_EE             (1 << 12)
>>>> +#define ENET_BD_FE             (1 << 11)
>>>> +#define ENET_BD_LCE            (1 << 10)
>>>> +#define ENET_BD_OE             (1 << 9)
>>>> +#define ENET_BD_TSE            (1 << 8)
>>>> +#define ENET_BD_ICE            (1 << 5)
>>>> +#define ENET_BD_PCR            (1 << 4)
>>>> +#define ENET_BD_VLAN           (1 << 2)
>>>> +#define ENET_BD_IPV6           (1 << 1)
>>>> +#define ENET_BD_FRAG           (1 << 0)
>>>> +
>>>> +#define ENET_BD_BDU            (1 << 31)
>>>>     typedef struct IMXFECState {
>>>>       /*< private >*/
>>>> @@ -113,7 +236,7 @@ typedef struct IMXFECState {
>>>>       /*< public >*/
>>>>       NICState *nic;
>>>>       NICConf conf;
>>>> -    qemu_irq irq;
>>>> +    qemu_irq irq[2];
>>>>       MemoryRegion iomem;
>>>>         uint32_t regs[ENET_MAX];
>>>> @@ -125,6 +248,8 @@ typedef struct IMXFECState {
>>>>       uint32_t phy_advertise;
>>>>       uint32_t phy_int;
>>>>       uint32_t phy_int_mask;
>>>> +
>>>> +    bool is_fec;
>>>>   } IMXFECState;
>>>>     #endif
>>>
>>>
>>
>
>
Jean-Christophe Dubois May 20, 2016, 9:24 p.m. UTC | #6
Le 19/05/2016 20:37, Peter Maydell a écrit :
> On 19 May 2016 at 19:14, Jean-Christophe DUBOIS <jcd@tribudubois.net> wrote:
>> Le 19/05/2016 05:48, Jason Wang a écrit :
>>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>>
>>> It's ok to decide with "is-fec", but is it better to use a new type for
>>> that?
>>
>> Well, there is a lot of common code between FEC and ENET because ENET is
>> basically backward compatible with FEC. So most/all of the FEC code needs to
>> go in the ENET device.
>>
>> I thought this way of doing thing was the best way to avoid duplicating
>> things.
> Right, but usually we have different device types, even if under
> the hood it's the same code using a bool to decide what to do
> (see for instance hw/display/pl110.c, which provides 3 devices
> which are all pretty similar). This means that the users of your
> device don't need to care that the FEC is an ENET device with
> a flag to say "be like an FEC device", they just instantiate
> the kind of device they want.

OK, I'll do that.

>
>>> The above renaming seems cause lots of unnecessary changes above which may
>>> brings issue when backporint patches to -stable. Can we just keep this, and
>>> all ENET_*** should be used after we're sure we are ENET?
>>
>> What do you mean by "after we're sure we are ENET"?
>>
>> ENET is the evolution of FEC to support Gb interface. FEC is more like a
>> legacy device these days (for ARM9 family). So it seems we are better
>> supporting ENET as default going forward.
> I don't mind if we rename the functions, #defines, etc, but if
> we do can we have a patch which does that renaming and only that
> renaming, so it's easy to review?

OK, I'll add a patch for renaming.

>
> thanks
> -- PMM
>
Jason Wang May 24, 2016, 2:16 a.m. UTC | #7
On 2016年05月21日 05:23, Jean-Christophe DUBOIS wrote:
> Le 20/05/2016 04:34, Jason Wang a écrit :
>>
>>
>> On 2016年05月20日 02:14, Jean-Christophe DUBOIS wrote:
>>> Le 19/05/2016 05:48, Jason Wang a écrit :
>>>>
>>>>
>>>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>>>> The ENET device (present in i.MX6) is "derived" from FEC and backward
>>>>> compatible with it.
>>>>>
>>>>> This patch adds the necessary support of the added feature in the 
>>>>> ENET
>>>>> device to allow Linux to use it (on supported processors).
>>>>>
>>>>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>>>>> ---
>>>>>
>>>>> Changes since v1:
>>>>>   * Not present on v1
>>>>>     Changes since v2:
>>>>>   * Not present on v2
>>>>>   Changes since v3:
>>>>>   * Separate and fix the 2 supported interrupts
>>>>>
>>>>>   hw/arm/fsl-imx25.c       |   3 +
>>>>>   hw/net/imx_fec.c         | 713 
>>>>> ++++++++++++++++++++++++++++++++++++++---------
>>>>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>>>>   3 files changed, 745 insertions(+), 166 deletions(-)
>>>>
>>>> [...]
>>>>
>>>>>   -static Property imx_fec_properties[] = {
>>>>> +static Property imx_eth_properties[] = {
>>>>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>>>>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>>>>       DEFINE_PROP_END_OF_LIST(),
>>>>>   };
>>>>
>>>> It's ok to decide with "is-fec", but is it better to use a new type 
>>>> for that?
>>>
>>> Well, there is a lot of common code between FEC and ENET because 
>>> ENET is basically backward compatible with FEC. So most/all of the 
>>> FEC code needs to go in the ENET device.
>>>
>>> I thought this way of doing thing was the best way to avoid 
>>> duplicating things.
>>
>> You can still share almost all the codes. E.g you can have a look at 
>> e1000.c which have 3 types of rather similar devices.
>
> OK, I'll change it in next patch to match the pl110 model as proposed 
> by Peter. No more additional property...
>
>>
>> Another question not relate to this patch, I saw version were bumped 
>> for vmstate version. Is it better to keep the vmstate for FEC and 
>> using a new vmstate for ENET (register array).
>
> Well, as I moved the FEC to register array, the VMState structure has 
> changed and therefore I believe the vmstate version needs to be bumped.
>
> Am I wrong? 

You're right. But migration to old version does not work in this way, 
even if there aren't any changes in FEC.

I'm not sure the policy for arm, but we used to do lots of works in the 
past to make migration to older version works.

You can achieve this by using two different vmstates, and keep the FEC's 
state (by just use parts of array).

Perter, any thoughts on this? Should we try to keep the migration 
compatibility here?

Thanks
Jean-Christophe Dubois May 24, 2016, 7:33 p.m. UTC | #8
Le 24/05/2016 04:16, Jason Wang a écrit :
>
>
> On 2016年05月21日 05:23, Jean-Christophe DUBOIS wrote:
>> Le 20/05/2016 04:34, Jason Wang a écrit :
>>>
>>>
>>> On 2016年05月20日 02:14, Jean-Christophe DUBOIS wrote:
>>>> Le 19/05/2016 05:48, Jason Wang a écrit :
>>>>>
>>>>>
>>>>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>>>>> The ENET device (present in i.MX6) is "derived" from FEC and 
>>>>>> backward
>>>>>> compatible with it.
>>>>>>
>>>>>> This patch adds the necessary support of the added feature in the 
>>>>>> ENET
>>>>>> device to allow Linux to use it (on supported processors).
>>>>>>
>>>>>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>>>>>> ---
>>>>>>
>>>>>> Changes since v1:
>>>>>>   * Not present on v1
>>>>>>     Changes since v2:
>>>>>>   * Not present on v2
>>>>>>   Changes since v3:
>>>>>>   * Separate and fix the 2 supported interrupts
>>>>>>
>>>>>>   hw/arm/fsl-imx25.c       |   3 +
>>>>>>   hw/net/imx_fec.c         | 713 
>>>>>> ++++++++++++++++++++++++++++++++++++++---------
>>>>>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>>>>>   3 files changed, 745 insertions(+), 166 deletions(-)
>>>>>
>>>>> [...]
>>>>>
>>>>>>   -static Property imx_fec_properties[] = {
>>>>>> +static Property imx_eth_properties[] = {
>>>>>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>>>>>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>>>>>       DEFINE_PROP_END_OF_LIST(),
>>>>>>   };
>>>>>
>>>>> It's ok to decide with "is-fec", but is it better to use a new 
>>>>> type for that?
>>>>
>>>> Well, there is a lot of common code between FEC and ENET because 
>>>> ENET is basically backward compatible with FEC. So most/all of the 
>>>> FEC code needs to go in the ENET device.
>>>>
>>>> I thought this way of doing thing was the best way to avoid 
>>>> duplicating things.
>>>
>>> You can still share almost all the codes. E.g you can have a look at 
>>> e1000.c which have 3 types of rather similar devices.
>>
>> OK, I'll change it in next patch to match the pl110 model as proposed 
>> by Peter. No more additional property...
>>
>>>
>>> Another question not relate to this patch, I saw version were bumped 
>>> for vmstate version. Is it better to keep the vmstate for FEC and 
>>> using a new vmstate for ENET (register array).
>>
>> Well, as I moved the FEC to register array, the VMState structure has 
>> changed and therefore I believe the vmstate version needs to be bumped.
>>
>> Am I wrong? 
>
> You're right. But migration to old version does not work in this way, 
> even if there aren't any changes in FEC.
>
> I'm not sure the policy for arm, but we used to do lots of works in 
> the past to make migration to older version works.
>
> You can achieve this by using two different vmstates, and keep the 
> FEC's state (by just use parts of array).
>
> Perter, any thoughts on this? Should we try to keep the migration 
> compatibility here?

I was thinking the migration feature was to migrate old VMSTATE (from 
previous version of Qemu) to the present (or more modern) version.

I certainly understand the intent and it does make a lot of sense when 
you are migrating live guest image like for example when using KVM 
and/or Xen for x86.

Now I am not sure it is worth the trouble in this case. FEC is only used 
by the i.MX25 PDK board (for now) and I would be surprised if anybody 
had build a guest image using this platform and that they have the need 
to migrate this guest from one Qemu version to another.

I am not sure KVM/Xen for ARM is mainstream enough yet and in any case 
it would be surprising they used i.MX25 PDK as an emulated guest. 
Hopefully it might change someday ...

I might be wrong and you could have another opinion ...

JC

>
> Thanks
>
Jason Wang May 25, 2016, 8:14 a.m. UTC | #9
On 2016年05月25日 03:33, Jean-Christophe DUBOIS wrote:
> Le 24/05/2016 04:16, Jason Wang a écrit :
>>
>>
>> On 2016年05月21日 05:23, Jean-Christophe DUBOIS wrote:
>>> Le 20/05/2016 04:34, Jason Wang a écrit :
>>>>
>>>>
>>>> On 2016年05月20日 02:14, Jean-Christophe DUBOIS wrote:
>>>>> Le 19/05/2016 05:48, Jason Wang a écrit :
>>>>>>
>>>>>>
>>>>>> On 2016年05月19日 06:23, Jean-Christophe Dubois wrote:
>>>>>>> The ENET device (present in i.MX6) is "derived" from FEC and 
>>>>>>> backward
>>>>>>> compatible with it.
>>>>>>>
>>>>>>> This patch adds the necessary support of the added feature in 
>>>>>>> the ENET
>>>>>>> device to allow Linux to use it (on supported processors).
>>>>>>>
>>>>>>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>>>>>>> ---
>>>>>>>
>>>>>>> Changes since v1:
>>>>>>>   * Not present on v1
>>>>>>>     Changes since v2:
>>>>>>>   * Not present on v2
>>>>>>>   Changes since v3:
>>>>>>>   * Separate and fix the 2 supported interrupts
>>>>>>>
>>>>>>>   hw/arm/fsl-imx25.c       |   3 +
>>>>>>>   hw/net/imx_fec.c         | 713 
>>>>>>> ++++++++++++++++++++++++++++++++++++++---------
>>>>>>>   include/hw/net/imx_fec.h | 195 ++++++++++---
>>>>>>>   3 files changed, 745 insertions(+), 166 deletions(-)
>>>>>>
>>>>>> [...]
>>>>>>
>>>>>>> -static Property imx_fec_properties[] = {
>>>>>>> +static Property imx_eth_properties[] = {
>>>>>>>       DEFINE_NIC_PROPERTIES(IMXFECState, conf),
>>>>>>> +    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
>>>>>>>       DEFINE_PROP_END_OF_LIST(),
>>>>>>>   };
>>>>>>
>>>>>> It's ok to decide with "is-fec", but is it better to use a new 
>>>>>> type for that?
>>>>>
>>>>> Well, there is a lot of common code between FEC and ENET because 
>>>>> ENET is basically backward compatible with FEC. So most/all of the 
>>>>> FEC code needs to go in the ENET device.
>>>>>
>>>>> I thought this way of doing thing was the best way to avoid 
>>>>> duplicating things.
>>>>
>>>> You can still share almost all the codes. E.g you can have a look 
>>>> at e1000.c which have 3 types of rather similar devices.
>>>
>>> OK, I'll change it in next patch to match the pl110 model as 
>>> proposed by Peter. No more additional property...
>>>
>>>>
>>>> Another question not relate to this patch, I saw version were 
>>>> bumped for vmstate version. Is it better to keep the vmstate for 
>>>> FEC and using a new vmstate for ENET (register array).
>>>
>>> Well, as I moved the FEC to register array, the VMState structure 
>>> has changed and therefore I believe the vmstate version needs to be 
>>> bumped.
>>>
>>> Am I wrong? 
>>
>> You're right. But migration to old version does not work in this way, 
>> even if there aren't any changes in FEC.
>>
>> I'm not sure the policy for arm, but we used to do lots of works in 
>> the past to make migration to older version works.
>>
>> You can achieve this by using two different vmstates, and keep the 
>> FEC's state (by just use parts of array).
>>
>> Perter, any thoughts on this? Should we try to keep the migration 
>> compatibility here?
>
> I was thinking the migration feature was to migrate old VMSTATE (from 
> previous version of Qemu) to the present (or more modern) version.
>
> I certainly understand the intent and it does make a lot of sense when 
> you are migrating live guest image like for example when using KVM 
> and/or Xen for x86.
>
> Now I am not sure it is worth the trouble in this case. FEC is only 
> used by the i.MX25 PDK board (for now) and I would be surprised if 
> anybody had build a guest image using this platform and that they have 
> the need to migrate this guest from one Qemu version to another.
>
> I am not sure KVM/Xen for ARM is mainstream enough yet and in any case 
> it would be surprising they used i.MX25 PDK as an emulated guest. 
> Hopefully it might change someday ...
>
> I might be wrong and you could have another opinion ...
>
> JC 

I get the points, then I think there's no need for doing the 
compatibility stuffs.

Thanks
diff mbox

Patch

diff --git a/hw/arm/fsl-imx25.c b/hw/arm/fsl-imx25.c
index 2f878b9..ddb2b22 100644
--- a/hw/arm/fsl-imx25.c
+++ b/hw/arm/fsl-imx25.c
@@ -191,6 +191,9 @@  static void fsl_imx25_realize(DeviceState *dev, Error **errp)
     }
 
     qdev_set_nic_properties(DEVICE(&s->fec), &nd_table[0]);
+
+    object_property_set_bool(OBJECT(&s->fec), true, "is-fec", &error_abort);
+
     object_property_set_bool(OBJECT(&s->fec), true, "realized", &err);
     if (err) {
         error_propagate(errp, err);
diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c
index 565b4a3..af5f6cb 100644
--- a/hw/net/imx_fec.c
+++ b/hw/net/imx_fec.c
@@ -24,6 +24,8 @@ 
 #include "qemu/osdep.h"
 #include "hw/net/imx_fec.h"
 #include "sysemu/dma.h"
+#include "net/checksum.h"
+#include "net/eth.h"
 
 /* For crc32 */
 #include <zlib.h>
@@ -52,10 +54,93 @@ 
         } \
     } while (0)
 
-static const char *imx_fec_reg_name(IMXFECState *s, uint32_t index)
+static const char *imx_default_reg_name(IMXFECState *s, uint32_t index)
 {
     static char tmp[20];
+    sprintf(tmp, "index %d", index);
+    return tmp;
+}
+
+static const char *imx_fec_reg_name(IMXFECState *s, uint32_t index)
+{
+    switch (index) {
+    case ENET_FRBR:
+        return "FRBR";
+    case ENET_FRSR:
+        return "FRSR";
+    case ENET_MIIGSK_CFGR:
+        return "MIIGSK_CFGR";
+    case ENET_MIIGSK_ENR:
+        return "MIIGSK_ENR";
+    default:
+        return imx_default_reg_name(s, index);
+    }
+}
 
+static const char *imx_enet_reg_name(IMXFECState *s, uint32_t index)
+{
+    switch (index) {
+    case ENET_RSFL:
+        return "RSFL";
+    case ENET_RSEM:
+        return "RSEM";
+    case ENET_RAEM:
+        return "RAEM";
+    case ENET_RAFL:
+        return "RAFL";
+    case ENET_TSEM:
+        return "TSEM";
+    case ENET_TAEM:
+        return "TAEM";
+    case ENET_TAFL:
+        return "TAFL";
+    case ENET_TIPG:
+        return "TIPG";
+    case ENET_FTRL:
+        return "FTRL";
+    case ENET_TACC:
+        return "TACC";
+    case ENET_RACC:
+        return "RACC";
+    case ENET_ATCR:
+        return "ATCR";
+    case ENET_ATVR:
+        return "ATVR";
+    case ENET_ATOFF:
+        return "ATOFF";
+    case ENET_ATPER:
+        return "ATPER";
+    case ENET_ATCOR:
+        return "ATCOR";
+    case ENET_ATINC:
+        return "ATINC";
+    case ENET_ATSTMP:
+        return "ATSTMP";
+    case ENET_TGSR:
+        return "TGSR";
+    case ENET_TCSR0:
+        return "TCSR0";
+    case ENET_TCCR0:
+        return "TCCR0";
+    case ENET_TCSR1:
+        return "TCSR1";
+    case ENET_TCCR1:
+        return "TCCR1";
+    case ENET_TCSR2:
+        return "TCSR2";
+    case ENET_TCCR2:
+        return "TCCR2";
+    case ENET_TCSR3:
+        return "TCSR3";
+    case ENET_TCCR3:
+        return "TCCR3";
+    default:
+        return imx_default_reg_name(s, index);
+    }
+}
+
+static const char *imx_eth_reg_name(IMXFECState *s, uint32_t index)
+{
     switch (index) {
     case ENET_EIR:
         return "EIR";
@@ -99,21 +184,16 @@  static const char *imx_fec_reg_name(IMXFECState *s, uint32_t index)
         return "TDSR";
     case ENET_MRBR:
         return "MRBR";
-    case ENET_FRBR:
-        return "FRBR";
-    case ENET_FRSR:
-        return "FRSR";
-    case ENET_MIIGSK_CFGR:
-        return "MIIGSK_CFGR";
-    case ENET_MIIGSK_ENR:
-        return "MIIGSK_ENR";
     default:
-        sprintf(tmp, "index %d", index);
-        return tmp;
+        if (s->is_fec) {
+            return imx_fec_reg_name(s, index);
+        } else {
+            return imx_enet_reg_name(s, index);
+        }
     }
 }
 
-static const VMStateDescription vmstate_imx_fec = {
+static const VMStateDescription vmstate_imx_eth = {
     .name = TYPE_IMX_FEC,
     .version_id = 2,
     .minimum_version_id = 2,
@@ -139,7 +219,7 @@  static const VMStateDescription vmstate_imx_fec = {
 #define PHY_INT_PARFAULT            (1 << 2)
 #define PHY_INT_AUTONEG_PAGE        (1 << 1)
 
-static void imx_fec_update(IMXFECState *s);
+static void imx_eth_update(IMXFECState *s);
 
 /*
  * The MII phy could raise a GPIO to the processor which in turn
@@ -149,7 +229,7 @@  static void imx_fec_update(IMXFECState *s);
  */
 static void phy_update_irq(IMXFECState *s)
 {
-    imx_fec_update(s);
+    imx_eth_update(s);
 }
 
 static void phy_update_link(IMXFECState *s)
@@ -168,7 +248,7 @@  static void phy_update_link(IMXFECState *s)
     phy_update_irq(s);
 }
 
-static void imx_fec_set_link(NetClientState *nc)
+static void imx_eth_set_link(NetClientState *nc)
 {
     phy_update_link(IMX_FEC(qemu_get_nic_opaque(nc)));
 }
@@ -294,21 +374,35 @@  static void imx_fec_write_bd(IMXFECBufDesc *bd, dma_addr_t addr)
     dma_memory_write(&address_space_memory, addr, bd, sizeof(*bd));
 }
 
-static void imx_fec_update(IMXFECState *s)
+static void imx_enet_read_bd(IMXENETBufDesc *bd, dma_addr_t addr)
 {
-    if (s->regs[ENET_EIR] & s->regs[ENET_EIMR]) {
-        FEC_PRINTF("interrupt raised\n");
-        qemu_set_irq(s->irq, 1);
+    dma_memory_read(&address_space_memory, addr, bd, sizeof(*bd));
+}
+
+static void imx_enet_write_bd(IMXENETBufDesc *bd, dma_addr_t addr)
+{
+    dma_memory_write(&address_space_memory, addr, bd, sizeof(*bd));
+}
+
+static void imx_eth_update(IMXFECState *s)
+{
+    if (s->regs[ENET_EIR] & s->regs[ENET_EIMR] & ENET_INT_TS_TIMER) {
+        qemu_set_irq(s->irq[1], 1);
     } else {
-        FEC_PRINTF("interrupt lowered\n");
-        qemu_set_irq(s->irq, 0);
+        qemu_set_irq(s->irq[1], 0);
+    }
+
+    if (s->regs[ENET_EIR] & s->regs[ENET_EIMR] & ENET_INT_MAC) {
+        qemu_set_irq(s->irq[0], 1);
+    } else {
+        qemu_set_irq(s->irq[0], 0);
     }
 }
 
 static void imx_fec_do_tx(IMXFECState *s)
 {
     int frame_size = 0;
-    uint8_t frame[FEC_MAX_FRAME_SIZE];
+    uint8_t frame[ENET_MAX_FRAME_SIZE];
     uint8_t *ptr = frame;
     uint32_t addr = s->tx_descriptor;
 
@@ -318,32 +412,34 @@  static void imx_fec_do_tx(IMXFECState *s)
 
         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 & FEC_BD_R) == 0) {
+                    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");
             break;
         }
         len = bd.length;
-        if (frame_size + len > FEC_MAX_FRAME_SIZE) {
-            len = FEC_MAX_FRAME_SIZE - frame_size;
-            s->regs[ENET_EIR] |= FEC_INT_BABT;
+        if (frame_size + len > ENET_MAX_FRAME_SIZE) {
+            len = ENET_MAX_FRAME_SIZE - frame_size;
+            s->regs[ENET_EIR] |= ENET_INT_BABT;
         }
         dma_memory_read(&address_space_memory, bd.data, ptr, len);
         ptr += len;
         frame_size += len;
-        if (bd.flags & FEC_BD_L) {
+        if (bd.flags & ENET_BD_L) {
+            FEC_PRINTF("sending %d bytes frame\n", len);
             /* Last buffer in frame.  */
             qemu_send_packet(qemu_get_queue(s->nic), frame, len);
             ptr = frame;
             frame_size = 0;
-            s->regs[ENET_EIR] |= FEC_INT_TXF;
+            s->regs[ENET_EIR] |= ENET_INT_TXF;
         }
-        s->regs[ENET_EIR] |= FEC_INT_TXB;
-        bd.flags &= ~FEC_BD_R;
+        s->regs[ENET_EIR] |= ENET_INT_TXB;
+        bd.flags &= ~ENET_BD_R;
         /* Write back the modified descriptor.  */
         imx_fec_write_bd(&bd, addr);
         /* Advance to the next descriptor.  */
-        if ((bd.flags & FEC_BD_W) != 0) {
+        if ((bd.flags & ENET_BD_W) != 0) {
             addr = s->regs[ENET_TDSR];
         } else {
             addr += sizeof(bd);
@@ -352,17 +448,97 @@  static void imx_fec_do_tx(IMXFECState *s)
 
     s->tx_descriptor = addr;
 
-    imx_fec_update(s);
+    imx_eth_update(s);
 }
 
-static void imx_fec_enable_rx(IMXFECState *s)
+static void imx_enet_do_tx(IMXFECState *s)
+{
+    int frame_size = 0;
+    uint8_t frame[ENET_MAX_FRAME_SIZE];
+    uint8_t *ptr = frame;
+    uint32_t addr = s->tx_descriptor;
+
+    while (1) {
+        IMXENETBufDesc bd;
+        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.  */
+            break;
+        }
+        len = bd.length;
+        if (frame_size + len > ENET_MAX_FRAME_SIZE) {
+            len = ENET_MAX_FRAME_SIZE - frame_size;
+            s->regs[ENET_EIR] |= ENET_INT_BABT;
+        }
+        dma_memory_read(&address_space_memory, bd.data, ptr, len);
+        ptr += len;
+        frame_size += len;
+        if (bd.flags & ENET_BD_L) {
+            if (bd.option & ENET_BD_PINS) {
+                struct ip_header *ip_hd = PKT_GET_IP_HDR(frame);
+                if (IP_HEADER_VERSION(ip_hd) == 4) {
+                    net_checksum_calculate(frame, frame_size);
+                }
+            }
+            if (bd.option & ENET_BD_IINS) {
+                struct ip_header *ip_hd = PKT_GET_IP_HDR(frame);
+                /* We compute checksum only for IPv4 frames */
+                if (IP_HEADER_VERSION(ip_hd) == 4) {
+                    uint16_t csum;
+                    ip_hd->ip_sum = 0;
+                    csum = net_raw_checksum((uint8_t *)ip_hd, sizeof(*ip_hd));
+                    ip_hd->ip_sum = cpu_to_be16(csum);
+                }
+            }
+            /* Last buffer in frame.  */
+            qemu_send_packet(qemu_get_queue(s->nic), frame, len);
+            ptr = frame;
+            frame_size = 0;
+            if (bd.option & ENET_BD_TX_INT) {
+                s->regs[ENET_EIR] |= ENET_INT_TXF;
+            }
+        }
+        if (bd.option & ENET_BD_TX_INT) {
+            s->regs[ENET_EIR] |= ENET_INT_TXB;
+        }
+        bd.flags &= ~ENET_BD_R;
+        /* Write back the modified descriptor.  */
+        imx_enet_write_bd(&bd, addr);
+        /* Advance to the next descriptor.  */
+        if ((bd.flags & ENET_BD_W) != 0) {
+            addr = s->regs[ENET_TDSR];
+        } else {
+            addr += sizeof(bd);
+        }
+    }
+
+    s->tx_descriptor = addr;
+
+    imx_eth_update(s);
+}
+
+static void imx_eth_do_tx(IMXFECState *s)
+{
+    if (!s->is_fec && (s->regs[ENET_ECR] & ENET_ECR_EN1588)) {
+        imx_enet_do_tx(s);
+    } else {
+        imx_fec_do_tx(s);
+    }
+}
+
+static void imx_eth_enable_rx(IMXFECState *s)
 {
     IMXFECBufDesc bd;
     bool tmp;
 
     imx_fec_read_bd(&bd, s->rx_descriptor);
 
-    tmp = ((bd.flags & FEC_BD_E) != 0);
+    tmp = ((bd.flags & ENET_BD_E) != 0);
 
     if (!tmp) {
         FEC_PRINTF("RX buffer full\n");
@@ -373,11 +549,11 @@  static void imx_fec_enable_rx(IMXFECState *s)
     s->regs[ENET_RDAR] = tmp ? ENET_RDAR_RDAR : 0;
 }
 
-static void imx_fec_reset(DeviceState *d)
+static void imx_eth_reset(DeviceState *d)
 {
     IMXFECState *s = IMX_FEC(d);
 
-    /* Reset the FEC */
+    /* Reset the Device */
     memset(s->regs, 0, sizeof(s->regs));
     s->regs[ENET_ECR]   = 0xf0000000;
     s->regs[ENET_MIBC]  = 0xc0000000;
@@ -392,9 +568,19 @@  static void imx_fec_reset(DeviceState *d)
                           | (s->conf.macaddr.a[5] << 16)
                           | 0x8808;
 
-    s->regs[ENET_FRBR]  = 0x00000600;
-    s->regs[ENET_FRSR]  = 0x00000500;
-    s->regs[ENET_MIIGSK_ENR]  = 0x00000006;
+    if (s->is_fec) {
+        s->regs[ENET_FRBR]  = 0x00000600;
+        s->regs[ENET_FRSR]  = 0x00000500;
+        s->regs[ENET_MIIGSK_ENR]  = 0x00000006;
+    } else {
+        s->regs[ENET_RAEM]  = 0x00000004;
+        s->regs[ENET_RAFL]  = 0x00000004;
+        s->regs[ENET_TAEM]  = 0x00000004;
+        s->regs[ENET_TAFL]  = 0x00000008;
+        s->regs[ENET_TIPG]  = 0x0000000c;
+        s->regs[ENET_FTRL]  = 0x000007ff;
+        s->regs[ENET_ATPER] = 0x3b9aca00;
+    }
 
     s->rx_descriptor = 0;
     s->tx_descriptor = 0;
@@ -403,11 +589,67 @@  static void imx_fec_reset(DeviceState *d)
     phy_reset(s);
 }
 
-static uint64_t imx_fec_read(void *opaque, hwaddr addr, unsigned size)
+static uint32_t imx_default_read(IMXFECState *s, uint32_t index)
+{
+    qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
+                  PRIx32 "\n", TYPE_IMX_FEC, __func__, index * 4);
+    return 0;
+}
+
+static uint32_t imx_fec_read(IMXFECState *s, uint32_t index)
+{
+    switch (index) {
+    case ENET_FRBR:
+    case ENET_FRSR:
+    case ENET_MIIGSK_CFGR:
+    case ENET_MIIGSK_ENR:
+        return s->regs[index];
+    default:
+        return imx_default_read(s, index);
+    }
+}
+
+static uint32_t imx_enet_read(IMXFECState *s, uint32_t index)
+{
+    switch (index) {
+    case ENET_RSFL:
+    case ENET_RSEM:
+    case ENET_RAEM:
+    case ENET_RAFL:
+    case ENET_TSEM:
+    case ENET_TAEM:
+    case ENET_TAFL:
+    case ENET_TIPG:
+    case ENET_FTRL:
+    case ENET_TACC:
+    case ENET_RACC:
+    case ENET_ATCR:
+    case ENET_ATVR:
+    case ENET_ATOFF:
+    case ENET_ATPER:
+    case ENET_ATCOR:
+    case ENET_ATINC:
+    case ENET_ATSTMP:
+    case ENET_TGSR:
+    case ENET_TCSR0:
+    case ENET_TCCR0:
+    case ENET_TCSR1:
+    case ENET_TCCR1:
+    case ENET_TCSR2:
+    case ENET_TCCR2:
+    case ENET_TCSR3:
+    case ENET_TCCR3:
+        return s->regs[index];
+    default:
+        return imx_default_read(s, index);
+    }
+}
+
+static uint64_t imx_eth_read(void *opaque, hwaddr offset, unsigned size)
 {
     uint32_t value = 0;
     IMXFECState *s = IMX_FEC(opaque);
-    uint32_t index = addr >> 2;
+    uint32_t index = offset >> 2;
 
     switch (index) {
     case ENET_EIR:
@@ -431,32 +673,126 @@  static uint64_t imx_fec_read(void *opaque, hwaddr addr, unsigned size)
     case ENET_RDSR:
     case ENET_TDSR:
     case ENET_MRBR:
-    case ENET_FRBR:
-    case ENET_FRSR:
-    case ENET_MIIGSK_CFGR:
-    case ENET_MIIGSK_ENR:
         value = s->regs[index];
         break;
     default:
-        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
-                      PRIx32 "\n", TYPE_IMX_FEC, __func__, index * 4);
+        if (s->is_fec) {
+            value = imx_fec_read(s, index);
+        } else {
+            value = imx_enet_read(s, index);
+        }
         break;
     }
 
-    FEC_PRINTF("reg[%s] => 0x%" PRIx32 "\n", imx_fec_reg_name(s, index),
+    FEC_PRINTF("reg[%s] => 0x%" PRIx32 "\n", imx_eth_reg_name(s, index),
                                               value);
 
     return value;
 }
 
-static void imx_fec_write(void *opaque, hwaddr addr,
-                          uint64_t value, unsigned size)
+static void imx_default_write(IMXFECState *s, uint32_t index, uint32_t value)
+{
+    qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
+                  PRIx32 "\n", TYPE_IMX_FEC, __func__, index * 4);
+    return;
+}
+
+static void imx_fec_write(IMXFECState *s, uint32_t index, uint32_t value)
+{
+    switch (index) {
+    case ENET_FRBR:
+        /* FRBR is read only */
+        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Register FRBR is read only\n",
+                      TYPE_IMX_FEC, __func__);
+        break;
+    case ENET_FRSR:
+        s->regs[index] = (value & 0x000003fc) | 0x00000400;
+        break;
+    case ENET_MIIGSK_CFGR:
+        s->regs[index] = value & 0x00000053;
+        break;
+    case ENET_MIIGSK_ENR:
+        s->regs[index] = (value & 0x00000002) ? 0x00000006 : 0;
+        break;
+    default:
+        imx_default_write(s, index, value);
+        break;
+    }
+}
+
+static void imx_enet_write(IMXFECState *s, uint32_t index, uint32_t value)
+{
+    switch (index) {
+    case ENET_RSFL:
+    case ENET_RSEM:
+    case ENET_RAEM:
+    case ENET_RAFL:
+    case ENET_TSEM:
+    case ENET_TAEM:
+    case ENET_TAFL:
+        s->regs[index] = value & 0x000001ff;
+        break;
+    case ENET_TIPG:
+        s->regs[index] = value & 0x0000001f;
+        break;
+    case ENET_FTRL:
+        s->regs[index] = value & 0x00003fff;
+        break;
+    case ENET_TACC:
+        s->regs[index] = value & 0x00000019;
+        break;
+    case ENET_RACC:
+        s->regs[index] = value & 0x000000C7;
+        break;
+    case ENET_ATCR:
+        s->regs[index] = value & 0x00002a9d;
+        break;
+    case ENET_ATVR:
+    case ENET_ATOFF:
+    case ENET_ATPER:
+        s->regs[index] = value;
+        break;
+    case ENET_ATSTMP:
+        /* ATSTMP is read only */
+        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Register ATSTMP is read only\n",
+                      TYPE_IMX_FEC, __func__);
+        break;
+    case ENET_ATCOR:
+        s->regs[index] = value & 0x7fffffff;
+        break;
+    case ENET_ATINC:
+        s->regs[index] = value & 0x00007f7f;
+        break;
+    case ENET_TGSR:
+        /* implement clear timer flag */
+        value = value & 0x0000000f;
+        break;
+    case ENET_TCSR0:
+    case ENET_TCSR1:
+    case ENET_TCSR2:
+    case ENET_TCSR3:
+        value = value & 0x000000fd;
+        break;
+    case ENET_TCCR0:
+    case ENET_TCCR1:
+    case ENET_TCCR2:
+    case ENET_TCCR3:
+        s->regs[index] = value;
+        break;
+    default:
+        imx_default_write(s, index, value);
+        break;
+    }
+}
+
+static void imx_eth_write(void *opaque, hwaddr offset, uint64_t value,
+                           unsigned size)
 {
     IMXFECState *s = IMX_FEC(opaque);
-    uint32_t index = addr >> 2;
+    uint32_t index = offset >> 2;
 
-    FEC_PRINTF("reg[%s] <= 0x%" PRIx32 "\n", imx_fec_reg_name(s, index),
-                                             (uint32_t)value);
+    FEC_PRINTF("reg[%s] <= 0x%" PRIx32 "\n", imx_eth_reg_name(s, index),
+                (uint32_t)value);
 
     switch (index) {
     case ENET_EIR:
@@ -466,28 +802,28 @@  static void imx_fec_write(void *opaque, hwaddr addr,
         s->regs[index] = value;
         break;
     case ENET_RDAR:
-        if (s->regs[ENET_ECR] & FEC_EN) {
+        if (s->regs[ENET_ECR] & ENET_ECR_ETHEREN) {
             if (!s->regs[index]) {
                 s->regs[index] = ENET_RDAR_RDAR;
-                imx_fec_enable_rx(s);
+                imx_eth_enable_rx(s);
             }
         } else {
             s->regs[index] = 0;
         }
         break;
     case ENET_TDAR:
-        if (s->regs[ENET_ECR] & FEC_EN) {
+        if (s->regs[ENET_ECR] & ENET_ECR_ETHEREN) {
             s->regs[index] = ENET_TDAR_TDAR;
-            imx_fec_do_tx(s);
+            imx_eth_do_tx(s);
         }
         s->regs[index] = 0;
         break;
     case ENET_ECR:
-        if (value & FEC_RESET) {
-            return imx_fec_reset(DEVICE(s));
+        if (value & ENET_ECR_RESET) {
+            return imx_eth_reset(DEVICE(s));
         }
         s->regs[index] = value;
-        if ((s->regs[index] & FEC_EN) == 0) {
+        if ((s->regs[index] & ENET_ECR_ETHEREN) == 0) {
             s->regs[ENET_RDAR] = 0;
             s->rx_descriptor = s->regs[ENET_RDSR];
             s->regs[ENET_TDAR] = 0;
@@ -507,7 +843,7 @@  static void imx_fec_write(void *opaque, hwaddr addr,
             do_phy_write(s, extract32(value, 18, 10), extract32(value, 0, 16));
         }
         /* raise the interrupt as the PHY operation is done */
-        s->regs[ENET_EIR] |= FEC_INT_MII;
+        s->regs[ENET_EIR] |= ENET_INT_MII;
         break;
     case ENET_MSCR:
         s->regs[index] = value & 0xfe;
@@ -524,7 +860,7 @@  static void imx_fec_write(void *opaque, hwaddr addr,
         /* We transmit immediately, so raise GRA immediately.  */
         s->regs[index] = value;
         if (value & 1) {
-            s->regs[ENET_EIR] |= FEC_INT_GRA;
+            s->regs[ENET_EIR] |= ENET_INT_GRA;
         }
         break;
     case ENET_PALR:
@@ -549,46 +885,49 @@  static void imx_fec_write(void *opaque, hwaddr addr,
         /* TODO: implement MAC hash filtering.  */
         break;
     case ENET_TFWR:
-        s->regs[index] = value & 3;
-        break;
-    case ENET_FRBR:
-        /* FRBR is read only */
-        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Register FRBR is read only\n",
-                      TYPE_IMX_FEC, __func__);
-        break;
-    case ENET_FRSR:
-        s->regs[index] = (value & 0x000003fc) | 0x00000400;
+        if (s->is_fec) {
+            s->regs[index] = value & 0x3;
+        } else {
+            s->regs[index] = value & 0x13f;
+        }
         break;
     case ENET_RDSR:
-        s->regs[index] = value & ~3;
+        if (s->is_fec) {
+            s->regs[index] = value & ~3;
+        } else {
+            s->regs[index] = value & ~7;
+        }
         s->rx_descriptor = s->regs[index];
         break;
     case ENET_TDSR:
-        s->regs[index] = value & ~3;
+        if (s->is_fec) {
+            s->regs[index] = value & ~3;
+        } else {
+            s->regs[index] = value & ~7;
+        }
         s->tx_descriptor = s->regs[index];
         break;
     case ENET_MRBR:
-        s->regs[index] = value & 0x000007f0;
-        break;
-    case ENET_MIIGSK_CFGR:
-        s->regs[index] = value & 0x00000053;
-        break;
-    case ENET_MIIGSK_ENR:
-        s->regs[index] = (value & 0x00000002) ? 0x00000006 : 0;
+        s->regs[index] = value & 0x00003ff0;
         break;
     default:
-        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
-                      PRIx32 "\n", TYPE_IMX_FEC, __func__, index * 4);
-        break;
+        if (s->is_fec) {
+            imx_fec_write(s, index, value);
+        } else {
+            imx_enet_write(s, index, value);
+        }
+        return;
     }
 
-    imx_fec_update(s);
+    imx_eth_update(s);
 }
 
-static int imx_fec_can_receive(NetClientState *nc)
+static int imx_eth_can_receive(NetClientState *nc)
 {
     IMXFECState *s = IMX_FEC(qemu_get_nic_opaque(nc));
 
+    FEC_PRINTF("\n");
+
     return s->regs[ENET_RDAR] ? 1 : 0;
 }
 
@@ -618,21 +957,21 @@  static ssize_t imx_fec_receive(NetClientState *nc, const uint8_t *buf,
     crc = cpu_to_be32(crc32(~0, buf, size));
     crc_ptr = (uint8_t *) &crc;
 
-    /* Huge frames are truncted.  */
-    if (size > FEC_MAX_FRAME_SIZE) {
-        size = FEC_MAX_FRAME_SIZE;
-        flags |= FEC_BD_TR | FEC_BD_LG;
+    /* Huge frames are truncated.  */
+    if (size > ENET_MAX_FRAME_SIZE) {
+        size = ENET_MAX_FRAME_SIZE;
+        flags |= ENET_BD_TR | ENET_BD_LG;
     }
 
     /* Frames larger than the user limit just set error flags.  */
     if (size > (s->regs[ENET_RCR] >> 16)) {
-        flags |= FEC_BD_LG;
+        flags |= ENET_BD_LG;
     }
 
     addr = s->rx_descriptor;
     while (size > 0) {
         imx_fec_read_bd(&bd, addr);
-        if ((bd.flags & FEC_BD_E) == 0) {
+        if ((bd.flags & ENET_BD_E) == 0) {
             /* No descriptors available.  Bail out.  */
             /*
              * FIXME: This is wrong. We should probably either
@@ -661,99 +1000,211 @@  static ssize_t imx_fec_receive(NetClientState *nc, const uint8_t *buf,
                              crc_ptr, 4 - size);
             crc_ptr += 4 - size;
         }
-        bd.flags &= ~FEC_BD_E;
+        bd.flags &= ~ENET_BD_E;
         if (size == 0) {
             /* Last buffer in frame.  */
-            bd.flags |= flags | FEC_BD_L;
+            bd.flags |= flags | ENET_BD_L;
             FEC_PRINTF("rx frame flags %04x\n", bd.flags);
-            s->regs[ENET_EIR] |= FEC_INT_RXF;
+            s->regs[ENET_EIR] |= ENET_INT_RXF;
         } else {
-            s->regs[ENET_EIR] |= FEC_INT_RXB;
+            s->regs[ENET_EIR] |= ENET_INT_RXB;
         }
         imx_fec_write_bd(&bd, addr);
         /* Advance to the next descriptor.  */
-        if ((bd.flags & FEC_BD_W) != 0) {
+        if ((bd.flags & ENET_BD_W) != 0) {
             addr = s->regs[ENET_RDSR];
         } else {
             addr += sizeof(bd);
         }
     }
     s->rx_descriptor = addr;
-    imx_fec_enable_rx(s);
-    imx_fec_update(s);
+    imx_eth_enable_rx(s);
+    imx_eth_update(s);
     return len;
 }
 
-static const MemoryRegionOps imx_fec_ops = {
-    .read = imx_fec_read,
-    .write = imx_fec_write,
+static ssize_t imx_enet_receive(NetClientState *nc, const uint8_t *buf,
+                                size_t len)
+{
+    IMXFECState *s = IMX_FEC(qemu_get_nic_opaque(nc));
+    IMXENETBufDesc bd;
+    uint32_t flags = 0;
+    uint32_t addr;
+    uint32_t crc;
+    uint32_t buf_addr;
+    uint8_t *crc_ptr;
+    unsigned int buf_len;
+    size_t size = len;
+
+    FEC_PRINTF("len %d\n", (int)size);
+
+    if (!s->regs[ENET_RDAR]) {
+        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Unexpected packet\n",
+                      TYPE_IMX_FEC, __func__);
+        return 0;
+    }
+
+    /* 4 bytes for the CRC.  */
+    size += 4;
+    crc = cpu_to_be32(crc32(~0, buf, size));
+    crc_ptr = (uint8_t *) &crc;
+
+    /* Huge frames are truncted.  */
+    if (size > ENET_MAX_FRAME_SIZE) {
+        size = ENET_MAX_FRAME_SIZE;
+        flags |= ENET_BD_TR | ENET_BD_LG;
+    }
+
+    /* Frames larger than the user limit just set error flags.  */
+    if (size > (s->regs[ENET_RCR] >> 16)) {
+        flags |= ENET_BD_LG;
+    }
+
+    addr = s->rx_descriptor;
+    while (size > 0) {
+        imx_enet_read_bd(&bd, addr);
+        if ((bd.flags & ENET_BD_E) == 0) {
+            /* No descriptors available.  Bail out.  */
+            /*
+             * FIXME: This is wrong. We should probably either
+             * save the remainder for when more RX buffers are
+             * available, or flag an error.
+             */
+            qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Lost end of frame\n",
+                          TYPE_IMX_FEC, __func__);
+            break;
+        }
+        buf_len = (size <= s->regs[ENET_MRBR]) ? size : s->regs[ENET_MRBR];
+        bd.length = buf_len;
+        size -= buf_len;
+
+        FEC_PRINTF("rx_bd 0x%x length %d\n", addr, bd.length);
+
+        /* The last 4 bytes are the CRC.  */
+        if (size < 4) {
+            buf_len += size - 4;
+        }
+        buf_addr = bd.data;
+        dma_memory_write(&address_space_memory, buf_addr, buf, buf_len);
+        buf += buf_len;
+        if (size < 4) {
+            dma_memory_write(&address_space_memory, buf_addr + buf_len,
+                             crc_ptr, 4 - size);
+            crc_ptr += 4 - size;
+        }
+        bd.flags &= ~ENET_BD_E;
+        if (size == 0) {
+            /* Last buffer in frame.  */
+            bd.flags |= flags | ENET_BD_L;
+            FEC_PRINTF("rx frame flags %04x\n", bd.flags);
+            if (bd.option & ENET_BD_RX_INT) {
+                s->regs[ENET_EIR] |= ENET_INT_RXF;
+            }
+        } else {
+            if (bd.option & ENET_BD_RX_INT) {
+                s->regs[ENET_EIR] |= ENET_INT_RXB;
+            }
+        }
+        imx_enet_write_bd(&bd, addr);
+        /* Advance to the next descriptor.  */
+        if ((bd.flags & ENET_BD_W) != 0) {
+            addr = s->regs[ENET_RDSR];
+        } else {
+            addr += sizeof(bd);
+        }
+    }
+    s->rx_descriptor = addr;
+    imx_eth_enable_rx(s);
+    imx_eth_update(s);
+    return len;
+}
+
+static ssize_t imx_eth_receive(NetClientState *nc, const uint8_t *buf,
+                                size_t len)
+{
+    IMXFECState *s = IMX_FEC(qemu_get_nic_opaque(nc));
+
+    if (!s->is_fec && (s->regs[ENET_ECR] & ENET_ECR_EN1588)) {
+        return imx_enet_receive(nc, buf, len);
+    } else {
+        return imx_fec_receive(nc, buf, len);
+    }
+}
+
+static const MemoryRegionOps imx_eth_ops = {
+    .read                  = imx_eth_read,
+    .write                 = imx_eth_write,
     .valid.min_access_size = 4,
     .valid.max_access_size = 4,
-    .endianness = DEVICE_NATIVE_ENDIAN,
+    .endianness            = DEVICE_NATIVE_ENDIAN,
 };
 
-static void imx_fec_cleanup(NetClientState *nc)
+static void imx_eth_cleanup(NetClientState *nc)
 {
     IMXFECState *s = IMX_FEC(qemu_get_nic_opaque(nc));
 
     s->nic = NULL;
 }
 
-static NetClientInfo net_imx_fec_info = {
-    .type = NET_CLIENT_OPTIONS_KIND_NIC,
-    .size = sizeof(NICState),
-    .can_receive = imx_fec_can_receive,
-    .receive = imx_fec_receive,
-    .cleanup = imx_fec_cleanup,
-    .link_status_changed = imx_fec_set_link,
+static NetClientInfo imx_eth_net_info = {
+    .type                = NET_CLIENT_OPTIONS_KIND_NIC,
+    .size                = sizeof(NICState),
+    .can_receive         = imx_eth_can_receive,
+    .receive             = imx_eth_receive,
+    .cleanup             = imx_eth_cleanup,
+    .link_status_changed = imx_eth_set_link,
 };
 
 
-static void imx_fec_realize(DeviceState *dev, Error **errp)
+static void imx_eth_realize(DeviceState *dev, Error **errp)
 {
     IMXFECState *s = IMX_FEC(dev);
     SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
 
-    memory_region_init_io(&s->iomem, OBJECT(dev), &imx_fec_ops, s,
+    memory_region_init_io(&s->iomem, OBJECT(dev), &imx_eth_ops, s,
                           TYPE_IMX_FEC, 0x400);
     sysbus_init_mmio(sbd, &s->iomem);
-    sysbus_init_irq(sbd, &s->irq);
+    sysbus_init_irq(sbd, &s->irq[0]);
+    sysbus_init_irq(sbd, &s->irq[1]);
+
     qemu_macaddr_default_if_unset(&s->conf.macaddr);
 
     s->conf.peers.ncs[0] = nd_table[0].netdev;
 
-    s->nic = qemu_new_nic(&net_imx_fec_info, &s->conf,
-                          object_get_typename(OBJECT(dev)), DEVICE(dev)->id,
-                          s);
+    s->nic = qemu_new_nic(&imx_eth_net_info, &s->conf,
+                          object_get_typename(OBJECT(dev)),
+                          DEVICE(dev)->id, s);
+
     qemu_format_nic_info_str(qemu_get_queue(s->nic), s->conf.macaddr.a);
 }
 
-static Property imx_fec_properties[] = {
+static Property imx_eth_properties[] = {
     DEFINE_NIC_PROPERTIES(IMXFECState, conf),
+    DEFINE_PROP_BOOL("is-fec", IMXFECState, is_fec, false),
     DEFINE_PROP_END_OF_LIST(),
 };
 
-static void imx_fec_class_init(ObjectClass *klass, void *data)
+static void imx_eth_class_init(ObjectClass *klass, void *data)
 {
     DeviceClass *dc = DEVICE_CLASS(klass);
 
-    dc->vmsd = &vmstate_imx_fec;
-    dc->reset = imx_fec_reset;
-    dc->props = imx_fec_properties;
-    dc->realize = imx_fec_realize;
-    dc->desc = "i.MX FEC Ethernet Controller";
+    dc->vmsd    = &vmstate_imx_eth;
+    dc->reset   = imx_eth_reset;
+    dc->props   = imx_eth_properties;
+    dc->realize = imx_eth_realize;
+    dc->desc    = "i.MX FEC/ENET Ethernet Controller";
 }
 
-static const TypeInfo imx_fec_info = {
-    .name = TYPE_IMX_FEC,
-    .parent = TYPE_SYS_BUS_DEVICE,
+static const TypeInfo imx_eth_info = {
+    .name          = TYPE_IMX_FEC,
+    .parent        = TYPE_SYS_BUS_DEVICE,
     .instance_size = sizeof(IMXFECState),
-    .class_init = imx_fec_class_init,
+    .class_init    = imx_eth_class_init,
 };
 
-static void imx_fec_register_types(void)
+static void imx_eth_register_types(void)
 {
-    type_register_static(&imx_fec_info);
+    type_register_static(&imx_eth_info);
 }
 
-type_init(imx_fec_register_types)
+type_init(imx_eth_register_types)
diff --git a/include/hw/net/imx_fec.h b/include/hw/net/imx_fec.h
index 709f8a0..a09b7d7 100644
--- a/include/hw/net/imx_fec.h
+++ b/include/hw/net/imx_fec.h
@@ -1,5 +1,5 @@ 
 /*
- * i.MX Fast Ethernet Controller emulation.
+ * i.MX FEC/ENET Ethernet Controller emulation.
  *
  * Copyright (c) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net>
  *
@@ -53,25 +53,64 @@ 
 #define ENET_RDSR              96
 #define ENET_TDSR              97
 #define ENET_MRBR              98
+#define ENET_RSFL              100
+#define ENET_RSEM              101
+#define ENET_RAEM              102
+#define ENET_RAFL              103
+#define ENET_TSEM              104
+#define ENET_TAEM              105
+#define ENET_TAFL              106
+#define ENET_TIPG              107
+#define ENET_FTRL              108
+#define ENET_TACC              112
+#define ENET_RACC              113
 #define ENET_MIIGSK_CFGR       192
 #define ENET_MIIGSK_ENR        194
+#define ENET_ATCR              256
+#define ENET_ATVR              257
+#define ENET_ATOFF             258
+#define ENET_ATPER             259
+#define ENET_ATCOR             260
+#define ENET_ATINC             261
+#define ENET_ATSTMP            262
+#define ENET_TGSR              385
+#define ENET_TCSR0             386
+#define ENET_TCCR0             387
+#define ENET_TCSR1             388
+#define ENET_TCCR1             389
+#define ENET_TCSR2             390
+#define ENET_TCCR2             391
+#define ENET_TCSR3             392
+#define ENET_TCCR3             393
 #define ENET_MAX               400
 
-#define FEC_MAX_FRAME_SIZE 2032
-
-#define FEC_INT_HB      (1 << 31)
-#define FEC_INT_BABR    (1 << 30)
-#define FEC_INT_BABT    (1 << 29)
-#define FEC_INT_GRA     (1 << 28)
-#define FEC_INT_TXF     (1 << 27)
-#define FEC_INT_TXB     (1 << 26)
-#define FEC_INT_RXF     (1 << 25)
-#define FEC_INT_RXB     (1 << 24)
-#define FEC_INT_MII     (1 << 23)
-#define FEC_INT_EBERR   (1 << 22)
-#define FEC_INT_LC      (1 << 21)
-#define FEC_INT_RL      (1 << 20)
-#define FEC_INT_UN      (1 << 19)
+#define ENET_MAX_FRAME_SIZE    2032
+
+/* EIR and EIMR */
+#define ENET_INT_HB            (1 << 31)
+#define ENET_INT_BABR          (1 << 30)
+#define ENET_INT_BABT          (1 << 29)
+#define ENET_INT_GRA           (1 << 28)
+#define ENET_INT_TXF           (1 << 27)
+#define ENET_INT_TXB           (1 << 26)
+#define ENET_INT_RXF           (1 << 25)
+#define ENET_INT_RXB           (1 << 24)
+#define ENET_INT_MII           (1 << 23)
+#define ENET_INT_EBERR         (1 << 22)
+#define ENET_INT_LC            (1 << 21)
+#define ENET_INT_RL            (1 << 20)
+#define ENET_INT_UN            (1 << 19)
+#define ENET_INT_PLR           (1 << 18)
+#define ENET_INT_WAKEUP        (1 << 17)
+#define ENET_INT_TS_AVAIL      (1 << 16)
+#define ENET_INT_TS_TIMER      (1 << 15)
+
+#define ENET_INT_MAC           (ENET_INT_HB | ENET_INT_BABR | ENET_INT_BABT | \
+                                ENET_INT_GRA | ENET_INT_TXF | ENET_INT_TXB | \
+                                ENET_INT_RXF | ENET_INT_RXB | ENET_INT_MII | \
+                                ENET_INT_EBERR | ENET_INT_LC | ENET_INT_RL | \
+                                ENET_INT_UN | ENET_INT_PLR | ENET_INT_WAKEUP | \
+                                ENET_INT_TS_AVAIL)
 
 /* RDAR */
 #define ENET_RDAR_RDAR         (1 << 24)
@@ -79,8 +118,54 @@ 
 /* TDAR */
 #define ENET_TDAR_TDAR         (1 << 24)
 
-#define FEC_EN                 (1 << 1)
-#define FEC_RESET              (1 << 0)
+/* ECR */
+#define ENET_ECR_RESET         (1 << 0)
+#define ENET_ECR_ETHEREN       (1 << 1)
+#define ENET_ECR_MAGICEN       (1 << 2)
+#define ENET_ECR_SLEEP         (1 << 3)
+#define ENET_ECR_EN1588        (1 << 4)
+#define ENET_ECR_SPEED         (1 << 5)
+#define ENET_ECR_DBGEN         (1 << 6)
+#define ENET_ECR_STOPEN        (1 << 7)
+#define ENET_ECR_DSBWP         (1 << 8)
+
+/* MIBC */
+#define ENET_MIBC_MIB_DIS      (1 << 31)
+#define ENET_MIBC_MIB_IDLE     (1 << 30)
+#define ENET_MIBC_MIB_CLEAR    (1 << 29)
+
+/* RCR */
+#define ENET_RCR_LOOP          (1 << 0)
+#define ENET_RCR_DRT           (1 << 1)
+#define ENET_RCR_MII_MODE      (1 << 2)
+#define ENET_RCR_PROM          (1 << 3)
+#define ENET_RCR_BC_REJ        (1 << 4)
+#define ENET_RCR_FCE           (1 << 5)
+#define ENET_RCR_RGMII_EN      (1 << 6)
+#define ENET_RCR_RMII_MODE     (1 << 8)
+#define ENET_RCR_RMII_10T      (1 << 9)
+#define ENET_RCR_PADEN         (1 << 12)
+#define ENET_RCR_PAUFWD        (1 << 13)
+#define ENET_RCR_CRCFWD        (1 << 14)
+#define ENET_RCR_CFEN          (1 << 15)
+#define ENET_RCR_MAX_FL_SHIFT  (16)
+#define ENET_RCR_MAX_FL_LENGTH (14)
+#define ENET_RCR_NLC           (1 << 30)
+#define ENET_RCR_GRS           (1 << 31)
+
+/* TCR */
+#define ENET_TCR_GTS           (1 << 0)
+#define ENET_TCR_FDEN          (1 << 2)
+#define ENET_TCR_TFC_PAUSE     (1 << 3)
+#define ENET_TCR_RFC_PAUSE     (1 << 4)
+#define ENET_TCR_ADDSEL_SHIFT  (5)
+#define ENET_TCR_ADDSEL_LENGTH (3)
+#define ENET_TCR_CRCFWD        (1 << 9)
+
+/* RDSR */
+#define ENET_TWFR_TFWR_SHIFT   (0)
+#define ENET_TWFR_TFWR_LENGTH  (6)
+#define ENET_TWFR_STRFWD       (1 << 8)
 
 /* Buffer Descriptor.  */
 typedef struct {
@@ -89,22 +174,60 @@  typedef struct {
     uint32_t data;
 } IMXFECBufDesc;
 
-#define FEC_BD_R    (1 << 15)
-#define FEC_BD_E    (1 << 15)
-#define FEC_BD_O1   (1 << 14)
-#define FEC_BD_W    (1 << 13)
-#define FEC_BD_O2   (1 << 12)
-#define FEC_BD_L    (1 << 11)
-#define FEC_BD_TC   (1 << 10)
-#define FEC_BD_ABC  (1 << 9)
-#define FEC_BD_M    (1 << 8)
-#define FEC_BD_BC   (1 << 7)
-#define FEC_BD_MC   (1 << 6)
-#define FEC_BD_LG   (1 << 5)
-#define FEC_BD_NO   (1 << 4)
-#define FEC_BD_CR   (1 << 2)
-#define FEC_BD_OV   (1 << 1)
-#define FEC_BD_TR   (1 << 0)
+#define ENET_BD_R              (1 << 15)
+#define ENET_BD_E              (1 << 15)
+#define ENET_BD_O1             (1 << 14)
+#define ENET_BD_W              (1 << 13)
+#define ENET_BD_O2             (1 << 12)
+#define ENET_BD_L              (1 << 11)
+#define ENET_BD_TC             (1 << 10)
+#define ENET_BD_ABC            (1 << 9)
+#define ENET_BD_M              (1 << 8)
+#define ENET_BD_BC             (1 << 7)
+#define ENET_BD_MC             (1 << 6)
+#define ENET_BD_LG             (1 << 5)
+#define ENET_BD_NO             (1 << 4)
+#define ENET_BD_CR             (1 << 2)
+#define ENET_BD_OV             (1 << 1)
+#define ENET_BD_TR             (1 << 0)
+
+typedef struct {
+    uint16_t length;
+    uint16_t flags;
+    uint32_t data;
+    uint16_t status;
+    uint16_t option;
+    uint16_t checksum;
+    uint16_t head_proto;
+    uint32_t last_buffer;
+    uint32_t timestamp;
+    uint32_t reserved[2];
+} IMXENETBufDesc;
+
+#define ENET_BD_ME             (1 << 15)
+#define ENET_BD_TX_INT         (1 << 14)
+#define ENET_BD_TS             (1 << 13)
+#define ENET_BD_PINS           (1 << 12)
+#define ENET_BD_IINS           (1 << 11)
+#define ENET_BD_PE             (1 << 10)
+#define ENET_BD_CE             (1 << 9)
+#define ENET_BD_UC             (1 << 8)
+#define ENET_BD_RX_INT         (1 << 7)
+
+#define ENET_BD_TXE            (1 << 15)
+#define ENET_BD_UE             (1 << 13)
+#define ENET_BD_EE             (1 << 12)
+#define ENET_BD_FE             (1 << 11)
+#define ENET_BD_LCE            (1 << 10)
+#define ENET_BD_OE             (1 << 9)
+#define ENET_BD_TSE            (1 << 8)
+#define ENET_BD_ICE            (1 << 5)
+#define ENET_BD_PCR            (1 << 4)
+#define ENET_BD_VLAN           (1 << 2)
+#define ENET_BD_IPV6           (1 << 1)
+#define ENET_BD_FRAG           (1 << 0)
+
+#define ENET_BD_BDU            (1 << 31)
 
 typedef struct IMXFECState {
     /*< private >*/
@@ -113,7 +236,7 @@  typedef struct IMXFECState {
     /*< public >*/
     NICState *nic;
     NICConf conf;
-    qemu_irq irq;
+    qemu_irq irq[2];
     MemoryRegion iomem;
 
     uint32_t regs[ENET_MAX];
@@ -125,6 +248,8 @@  typedef struct IMXFECState {
     uint32_t phy_advertise;
     uint32_t phy_int;
     uint32_t phy_int_mask;
+
+    bool is_fec;
 } IMXFECState;
 
 #endif