Die zwei ersten Byte sind im U-Boot hardcodiert (00:D0) die restlichen 4 Byte (2-5) werden in das CPU Register 8002C020 geschrieben

u-boot.xxxx.xx/board/tqc/tqma28/tqma28.c

void mx28_adjust_mac(int dev_id, unsigned char *mac)
{
	uint32_t data;

	/*
	 * TQ Components Gmbh:      00:D0:93:xx:xx:xx (default)
	 */

	mac[0] = 0x00;
	mac[1] = 0xD0;

	if (dev_id == 1) { /* Let MAC1 be MAC0 + 1 by default */
		data = (mac[3] << 16) | (mac[4] << 8) | mac[5];
		data = data + 1;
		mac[3] = (data >> 16) & 0xFF;
		mac[4] = (data >> 8) & 0xFF;
		mac[5] = data & 0xFF;
	}
}

Disclaimer
TQ-Systems GmbH provides the Board Support Packages (BSP) free of charge. The software included in the shipment has been configured individually for the starter kits. The software is only intended to evaluate the module. The use of the Board Support Packages (BSP) is only allowed within the scope of functionality described by TQ-Systems GmbH. TQ-Systems GmbH does not accept any liability for all further changes of the Board Support Package and for any damage resulting from its use.