Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f706bed1 authored by Kumar Gala's avatar Kumar Gala
Browse files

powerpc/fsl: update compatiable on fsl 16550 uart nodes



The Freescale serial port's are pretty much a 16550, however there are
some FSL specific bugs and features.  Add a "fsl,ns16550" compatiable
string to allow code to handle those FSL specific issues.

Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 07256963
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -256,7 +256,7 @@
		serial0: serial@4500 {
			cell-index = <0>;
			device_type = "serial";
			compatible = "ns16550";
			compatible = "fsl,ns16550", "ns16550";
			reg = <0x4500 0x100>;
			clock-frequency = <400000000>;
			interrupts = <9 0x8>;
@@ -266,7 +266,7 @@
		serial1: serial@4600 {
			cell-index = <1>;
			device_type = "serial";
			compatible = "ns16550";
			compatible = "fsl,ns16550", "ns16550";
			reg = <0x4600 0x100>;
			clock-frequency = <400000000>;
			interrupts = <10 0x8>;
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
serial0: serial@4500 {
	cell-index = <0>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x4500 0x100>;
	clock-frequency = <0>;
	interrupts = <42 2 0 0>;
@@ -44,7 +44,7 @@ serial0: serial@4500 {
serial1: serial@4600 {
	cell-index = <1>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x4600 0x100>;
	clock-frequency = <0>;
	interrupts = <42 2 0 0>;
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
serial0: serial@11c500 {
	cell-index = <0>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x11c500 0x100>;
	clock-frequency = <0>;
	interrupts = <36 2 0 0>;
@@ -44,7 +44,7 @@ serial0: serial@11c500 {
serial1: serial@11c600 {
	cell-index = <1>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x11c600 0x100>;
	clock-frequency = <0>;
	interrupts = <36 2 0 0>;
+2 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
serial2: serial@11d500 {
	cell-index = <2>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x11d500 0x100>;
	clock-frequency = <0>;
	interrupts = <37 2 0 0>;
@@ -44,7 +44,7 @@ serial2: serial@11d500 {
serial3: serial@11d600 {
	cell-index = <3>;
	device_type = "serial";
	compatible = "ns16550";
	compatible = "fsl,ns16550", "ns16550";
	reg = <0x11d600 0x100>;
	clock-frequency = <0>;
	interrupts = <37 2 0 0>;
+2 −2
Original line number Diff line number Diff line
@@ -339,7 +339,7 @@
		serial0: serial@4500 {
			cell-index = <0>;
			device_type = "serial";
			compatible = "ns16550";
			compatible = "fsl,ns16550", "ns16550";
			reg = <0x4500 0x100>;
			clock-frequency = <0>;
			interrupts = <0x2a 0x2>;
@@ -349,7 +349,7 @@
		serial1: serial@4600 {
			cell-index = <1>;
			device_type = "serial";
			compatible = "ns16550";
			compatible = "fsl,ns16550", "ns16550";
			reg = <0x4600 0x100>;
			clock-frequency = <0>;
			interrupts = <0x1c 0x2>;
Loading