Tool/software: Linux
Hi,
we have designed a customised Board withAM3352 Processor. In our Board we are using MAX14830(SPI to QUAD Uart). MAX14830 IC is connected to SPI1 of AM3352. We have enabled the driver in the Linux and we made the bellow changes in the DTS file.
spi1_pins: pinmux_spi1_pins {
pinctrl-single,pins = <
AM33XX_IOPAD(0x908, PIN_INPUT | MUX_MODE2)
AM33XX_IOPAD(0x90C, PIN_INPUT | MUX_MODE2)
AM33XX_IOPAD(0x910, PIN_INPUT | MUX_MODE2)
AM33XX_IOPAD(0x99C, PIN_INPUT | MUX_MODE3)
>;
};
&spi1 {
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&spi1_pins>;
max14830@0 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "maxim,max14830";
reg = <0>;
spi-max-frequency = <10000>;
spi-cpha;
};
max14830@1 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "maxim,max14830";
reg = <1>;
spi-max-frequency = <10000>;
};
};
Question:
---------
1. But During Kernel Booting we are not the Debug is not printed?
2. Any changes has to be done?
3. Can any one provide any suggestion to solve the issue ?
Regards,
Avinash N