aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBenoît Thébaudeau2013-04-11 04:36:00 -0500
committerAlbert ARIBAUD2013-04-12 00:55:08 -0500
commite53232250b9dcff4915a6024f9951f52eadb4956 (patch)
tree9dc994c1c660f72faeed79940f3aff356ce6b9a7 /doc
parentc82730cb8ee8dc93cebe4dbfbb6b536ba9c724a5 (diff)
downloadu-boot-e53232250b9dcff4915a6024f9951f52eadb4956.tar.gz
u-boot-e53232250b9dcff4915a6024f9951f52eadb4956.tar.xz
u-boot-e53232250b9dcff4915a6024f9951f52eadb4956.zip
arm: Remove support for unused s3c64xx
Following the removal of the smdk6400 board, the s3c64xx SoC becomes unused, so remove associated code. It will still be possible to restore it later from the Git history if necessary. Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/driver-model/UDM-serial.txt42
1 files changed, 19 insertions, 23 deletions
diff --git a/doc/driver-model/UDM-serial.txt b/doc/driver-model/UDM-serial.txt
index ef71fea2b8..1011c32d18 100644
--- a/doc/driver-model/UDM-serial.txt
+++ b/doc/driver-model/UDM-serial.txt
@@ -96,88 +96,84 @@ III) Analysis of in-tree drivers
96 ------------------ 96 ------------------
97 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 97 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
98 98
99 10) s3c64xx.c 99 10) sandbox.c
100 ------------- 100 -------------
101 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 101 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
102 102
103 11) sandbox.c 103 11) serial.c
104 -------------
105 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
106
107 12) serial.c
108 ------------ 104 ------------
109 This is a complementary part of NS16550 UART driver, see above. 105 This is a complementary part of NS16550 UART driver, see above.
110 106
111 13) serial_clps7111.c 107 12) serial_clps7111.c
112 --------------------- 108 ---------------------
113 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 109 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
114 110
115 14) serial_imx.c 111 13) serial_imx.c
116 ---------------- 112 ----------------
117 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. This driver 113 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. This driver
118 might be removed in favor of serial_mxc.c . 114 might be removed in favor of serial_mxc.c .
119 115
120 15) serial_ixp.c 116 14) serial_ixp.c
121 ---------------- 117 ----------------
122 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 118 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
123 119
124 16) serial_ks8695.c 120 15) serial_ks8695.c
125 ------------------- 121 -------------------
126 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 122 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
127 123
128 17) serial_max3100.c 124 16) serial_max3100.c
129 -------------------- 125 --------------------
130 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 126 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
131 127
132 18) serial_mxc.c 128 17) serial_mxc.c
133 ---------------- 129 ----------------
134 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 130 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
135 131
136 19) serial_netarm.c 132 18) serial_netarm.c
137 ------------------- 133 -------------------
138 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 134 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
139 135
140 20) serial_pl01x.c 136 19) serial_pl01x.c
141 ------------------ 137 ------------------
142 No support for CONFIG_SERIAL_MULTI. Simple conversion possible, though this 138 No support for CONFIG_SERIAL_MULTI. Simple conversion possible, though this
143 driver in fact contains two drivers in total. 139 driver in fact contains two drivers in total.
144 140
145 21) serial_pxa.c 141 20) serial_pxa.c
146 ---------------- 142 ----------------
147 This driver is a bit complicated, but due to clean support for 143 This driver is a bit complicated, but due to clean support for
148 CONFIG_SERIAL_MULTI, there are no expected obstructions throughout the 144 CONFIG_SERIAL_MULTI, there are no expected obstructions throughout the
149 conversion process. 145 conversion process.
150 146
151 22) serial_s3c24x0.c 147 21) serial_s3c24x0.c
152 -------------------- 148 --------------------
153 This driver, being quite ad-hoc might need some work to bring back to shape. 149 This driver, being quite ad-hoc might need some work to bring back to shape.
154 150
155 23) serial_s3c44b0.c 151 22) serial_s3c44b0.c
156 -------------------- 152 --------------------
157 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 153 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
158 154
159 24) serial_s5p.c 155 23) serial_s5p.c
160 ---------------- 156 ----------------
161 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 157 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
162 158
163 25) serial_sa1100.c 159 24) serial_sa1100.c
164 ------------------- 160 -------------------
165 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 161 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
166 162
167 26) serial_sh.c 163 25) serial_sh.c
168 --------------- 164 ---------------
169 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 165 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
170 166
171 27) serial_xuartlite.c 167 26) serial_xuartlite.c
172 ---------------------- 168 ----------------------
173 No support for CONFIG_SERIAL_MULTI. Simple conversion possible. 169 No support for CONFIG_SERIAL_MULTI. Simple conversion possible.
174 170
175 28) usbtty.c 171 27) usbtty.c
176 ------------ 172 ------------
177 This driver seems very complicated and entangled with USB framework. The 173 This driver seems very complicated and entangled with USB framework. The
178 conversion might be complicated here. 174 conversion might be complicated here.
179 175
180 29) arch/powerpc/cpu/mpc512x/serial.c 176 28) arch/powerpc/cpu/mpc512x/serial.c
181 ------------------------------------- 177 -------------------------------------
182 This driver supports CONFIG_SERIAL_MULTI. This driver will need to be moved to 178 This driver supports CONFIG_SERIAL_MULTI. This driver will need to be moved to
183 proper place. 179 proper place.