Part Number: TMDS64GPEVM
Hi ,
I am working on AM64x-evm
I want to use I2C-0 on the board to read the data from EEPROM for that I have to select/muxed in device tree, for that i have added the block in device tree
&main_pmx0 { main_i2c0_pins_default: main-i2c0-pins-default { pinctrl-single,pins = < AM64X_IOPAD(0x0260, PIN_INPUT_PULLUP, 0) /* (A18) I2C0_SCL */ AM64X_IOPAD(0x0264, PIN_INPUT_PULLUP, 0) /* (B18) I2C0_SDA */ >; }; }; &main_i2c0 { pinctrl-names = "default"; pinctrl-0 = <&main_i2c0_pins_default>; clock-frequency = <100000>; };
now I want to compile and proceed further to build and image and enable the I2C-0 node . I tried the command
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- ti/k3-am642-evm.dtb
but it is not working.