KSZ8721BL의 Default PHY Address 는 0x0001이다.

DM368-EVM 소스에서 DM368EVM_4_02_00_06 기준
psp/u-boot-2010.12-rc2-psp03.01.01.39/include/configs/davinci_dm365evm.h 의
#define CONFIG_EMAC_MDIO_PHY_NUM 0 -> 1로 변경해줘야한다.

psp/u-boot-2010.12-rc2-psp03.01.01.39/board/davinci/common/misc.c 수정

 int dvevm_read_mac_address(uint8_t *buf)
{
   buf[0] = 0x00;
   buf[1] = 0x01;
   buf[2] = 0x02;
   buf[3] = 0x0a;
   buf[4] = 0x0b;
   buf[5] = 0x0c;

   return 1; /* Found */
}

Posted by 다크쌍피