openwrt mt7620a使能uartf

在对应的硬件dts文件中修改。

添加:

&uart {
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&uartf_gpio_pins>;
};

修改默认的pinctrl,去掉uartf

&pinctrl {
	state_default: pinctrl0 {
		default {
			ralink,group = "wled", "pa", "wdt", "spi refclk";
			ralink,function = "gpio";
		};
	};
};

由于uart声明靠前,在系统启动后,uart对应ttyS0,uartlite对应ttyS1,因此需要修改chosen。

添加或者修改

    chosen {
		bootargs = "console=ttyS1,57600";
	};

 

你可能感兴趣的:(openwrt,openwrt,mt7620,uartf)