BeagleBone Black 8bit LCD Controller

Hi everyone,
I need to send data with LCD Controller. and it should be 8bit per pixel.
Is it enough to set bpp in device tree overlay file like this?

panel {
status = “okay”;
compatible = “ti,tilcdc,panel”;
pinctrl-names = “default”;
pinctrl-0 = <&bb_lcd_lcd_pins>;
panel-info {
ac-bias = <255>;
ac-bias-intrpt = <0>;
dma-burst-sz = <16>;
bpp = <8>;
fdd = <0x80>;
sync-edge = <0>;
sync-ctrl = <1>;
raster-order = <0>;
fifo-th = <0>;
};

Thank you in advance!