]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/SerialDxe/SerialIo.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / SerialDxe / SerialIo.c
1 /** @file
2 Serial IO Abstraction for GDB stub. This allows an EFI consoles that shows up on the system
3 running GDB. One console for error information and another console for user input/output.
4
5 Basic packet format is $packet-data#checksum. So every command has 4 bytes of overhead: $,
6 #, 0, 0. The 0 and 0 are the ascii characters for the checksum.
7
8 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
9 Copyright (c) 2013-2014, ARM Ltd. All rights reserved.<BR>
10
11 This program and the accompanying materials
12 are licensed and made available under the terms and conditions of the BSD License
13 which accompanies this distribution. The full text of the license may be found at
14 http://opensource.org/licenses/bsd-license.php
15
16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18
19 **/
20
21 #include <PiDxe.h>
22 #include <Library/UefiLib.h>
23 #include <Library/UefiBootServicesTableLib.h>
24 #include <Library/DebugLib.h>
25 #include <Library/SerialPortLib.h>
26 #include <Library/SerialPortExtLib.h>
27 #include <Library/PcdLib.h>
28
29 #include <Protocol/SerialIo.h>
30
31 typedef struct {
32 VENDOR_DEVICE_PATH Guid;
33 UART_DEVICE_PATH Uart;
34 EFI_DEVICE_PATH_PROTOCOL End;
35 } SIMPLE_TEXT_OUT_DEVICE_PATH;
36
37 SIMPLE_TEXT_OUT_DEVICE_PATH mDevicePath = {
38 {
39 { HARDWARE_DEVICE_PATH, HW_VENDOR_DP, { sizeof (VENDOR_DEVICE_PATH), 0} },
40 EFI_CALLER_ID_GUID // Use the drivers GUID
41 },
42 {
43 { MESSAGING_DEVICE_PATH, MSG_UART_DP, { sizeof (UART_DEVICE_PATH), 0} },
44 0, // Reserved
45 FixedPcdGet64 (PcdUartDefaultBaudRate), // BaudRate
46 FixedPcdGet8 (PcdUartDefaultDataBits), // DataBits
47 FixedPcdGet8 (PcdUartDefaultParity), // Parity (N)
48 FixedPcdGet8 (PcdUartDefaultStopBits) // StopBits
49 },
50 { END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, { sizeof (EFI_DEVICE_PATH_PROTOCOL), 0 } }
51 };
52
53 EFI_HANDLE gHandle = NULL;
54
55 /**
56 Reset the serial device.
57
58 @param This Protocol instance pointer.
59
60 @retval EFI_SUCCESS The device was reset.
61 @retval EFI_DEVICE_ERROR The serial device could not be reset.
62
63 **/
64 EFI_STATUS
65 EFIAPI
66 SerialReset (
67 IN EFI_SERIAL_IO_PROTOCOL *This
68 )
69 {
70 EFI_STATUS Status;
71 EFI_TPL Tpl;
72
73 Status = SerialPortInitialize ();
74 if (EFI_ERROR(Status)) {
75 return Status;
76 }
77
78 //
79 // Set the Serial I/O mode and update the device path
80 //
81
82 Tpl = gBS->RaiseTPL (TPL_NOTIFY);
83
84 //
85 // Set the Serial I/O mode
86 //
87 This->Mode->ReceiveFifoDepth = 0;
88 This->Mode->Timeout = 1000000;
89 This->Mode->BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
90 This->Mode->DataBits = (UINT32)PcdGet8 (PcdUartDefaultDataBits);
91 This->Mode->Parity = (UINT32)PcdGet8 (PcdUartDefaultParity);
92 This->Mode->StopBits = (UINT32)PcdGet8 (PcdUartDefaultStopBits);
93
94 //
95 // Check if the device path has actually changed
96 //
97 if (mDevicePath.Uart.BaudRate == This->Mode->BaudRate &&
98 mDevicePath.Uart.DataBits == (UINT8)This->Mode->DataBits &&
99 mDevicePath.Uart.Parity == (UINT8)This->Mode->Parity &&
100 mDevicePath.Uart.StopBits == (UINT8)This->Mode->StopBits
101 ) {
102 gBS->RestoreTPL (Tpl);
103 return EFI_SUCCESS;
104 }
105
106 //
107 // Update the device path
108 //
109 mDevicePath.Uart.BaudRate = This->Mode->BaudRate;
110 mDevicePath.Uart.DataBits = (UINT8)This->Mode->DataBits;
111 mDevicePath.Uart.Parity = (UINT8)This->Mode->Parity;
112 mDevicePath.Uart.StopBits = (UINT8)This->Mode->StopBits;
113
114 Status = gBS->ReinstallProtocolInterface (
115 gHandle,
116 &gEfiDevicePathProtocolGuid,
117 &mDevicePath,
118 &mDevicePath
119 );
120
121 gBS->RestoreTPL (Tpl);
122
123 return Status;
124 }
125
126
127 /**
128 Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
129 data buts, and stop bits on a serial device.
130
131 @param This Protocol instance pointer.
132 @param BaudRate The requested baud rate. A BaudRate value of 0 will use the the
133 device's default interface speed.
134 @param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
135 serial interface. A ReceiveFifoDepth value of 0 will use
136 the device's default FIFO depth.
137 @param Timeout The requested time out for a single character in microseconds.
138 This timeout applies to both the transmit and receive side of the
139 interface. A Timeout value of 0 will use the device's default time
140 out value.
141 @param Parity The type of parity to use on this serial device. A Parity value of
142 DefaultParity will use the device's default parity value.
143 @param DataBits The number of data bits to use on the serial device. A DataBits
144 value of 0 will use the device's default data bit setting.
145 @param StopBits The number of stop bits to use on this serial device. A StopBits
146 value of DefaultStopBits will use the device's default number of
147 stop bits.
148
149 @retval EFI_SUCCESS The device was reset.
150 @retval EFI_DEVICE_ERROR The serial device could not be reset.
151
152 **/
153 EFI_STATUS
154 EFIAPI
155 SerialSetAttributes (
156 IN EFI_SERIAL_IO_PROTOCOL *This,
157 IN UINT64 BaudRate,
158 IN UINT32 ReceiveFifoDepth,
159 IN UINT32 Timeout,
160 IN EFI_PARITY_TYPE Parity,
161 IN UINT8 DataBits,
162 IN EFI_STOP_BITS_TYPE StopBits
163 )
164 {
165 RETURN_STATUS ReturnStatus;
166 EFI_STATUS Status;
167 EFI_TPL Tpl;
168
169 ReturnStatus = SerialPortSetAttributes (&BaudRate, &ReceiveFifoDepth, &Timeout, &Parity, &DataBits, &StopBits);
170 if (RETURN_ERROR (ReturnStatus)) {
171 return EFI_DEVICE_ERROR;
172 }
173
174 //
175 // Set the Serial I/O mode and update the device path
176 //
177
178 Tpl = gBS->RaiseTPL (TPL_NOTIFY);
179
180 //
181 // Set the Serial I/O mode
182 //
183 This->Mode->BaudRate = BaudRate;
184 This->Mode->ReceiveFifoDepth = ReceiveFifoDepth;
185 This->Mode->Timeout = Timeout;
186 This->Mode->Parity = (UINT32)Parity;
187 This->Mode->DataBits = (UINT32)DataBits;
188 This->Mode->StopBits = (UINT32)StopBits;
189
190 //
191 // Check if the device path has actually changed
192 //
193 if (mDevicePath.Uart.BaudRate == BaudRate &&
194 mDevicePath.Uart.Parity == (UINT8)Parity &&
195 mDevicePath.Uart.DataBits == DataBits &&
196 mDevicePath.Uart.StopBits == (UINT8)StopBits
197 ) {
198 gBS->RestoreTPL (Tpl);
199 return EFI_SUCCESS;
200 }
201
202 //
203 // Update the device path
204 //
205 mDevicePath.Uart.BaudRate = BaudRate;
206 mDevicePath.Uart.DataBits = DataBits;
207 mDevicePath.Uart.Parity = (UINT8) Parity;
208 mDevicePath.Uart.StopBits = (UINT8) StopBits;
209
210 Status = gBS->ReinstallProtocolInterface (
211 gHandle,
212 &gEfiDevicePathProtocolGuid,
213 &mDevicePath,
214 &mDevicePath
215 );
216
217 gBS->RestoreTPL (Tpl);
218
219 return Status;
220 }
221
222
223 /**
224 Set the control bits on a serial device
225
226 @param This Protocol instance pointer.
227 @param Control Set the bits of Control that are settable.
228
229 @retval EFI_SUCCESS The new control bits were set on the serial device.
230 @retval EFI_UNSUPPORTED The serial device does not support this operation.
231 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
232
233 **/
234 EFI_STATUS
235 EFIAPI
236 SerialSetControl (
237 IN EFI_SERIAL_IO_PROTOCOL *This,
238 IN UINT32 Control
239 )
240 {
241 return SerialPortSetControl(Control);
242 }
243
244
245 /**
246 Retrieves the status of the control bits on a serial device
247
248 @param This Protocol instance pointer.
249 @param Control A pointer to return the current Control signals from the serial device.
250
251 @retval EFI_SUCCESS The control bits were read from the serial device.
252 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
253
254 **/
255 EFI_STATUS
256 EFIAPI
257 SerialGetControl (
258 IN EFI_SERIAL_IO_PROTOCOL *This,
259 OUT UINT32 *Control
260 )
261 {
262 return SerialPortGetControl(Control);
263 }
264
265
266 /**
267 Writes data to a serial device.
268
269 @param This Protocol instance pointer.
270 @param BufferSize On input, the size of the Buffer. On output, the amount of
271 data actually written.
272 @param Buffer The buffer of data to write
273
274 @retval EFI_SUCCESS The data was written.
275 @retval EFI_DEVICE_ERROR The device reported an error.
276 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
277
278 **/
279 EFI_STATUS
280 EFIAPI
281 SerialWrite (
282 IN EFI_SERIAL_IO_PROTOCOL *This,
283 IN OUT UINTN *BufferSize,
284 IN VOID *Buffer
285 )
286 {
287 UINTN Count;
288
289 Count = SerialPortWrite (Buffer, *BufferSize);
290
291 if (Count != *BufferSize) {
292 *BufferSize = Count;
293 return EFI_TIMEOUT;
294 }
295
296 return EFI_SUCCESS;
297 }
298
299 /**
300 Reads data from a serial device.
301
302 @param This Protocol instance pointer.
303 @param BufferSize On input, the size of the Buffer. On output, the amount of
304 data returned in Buffer.
305 @param Buffer The buffer to return the data into.
306
307 @retval EFI_SUCCESS The data was read.
308 @retval EFI_DEVICE_ERROR The device reported an error.
309 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
310
311 **/
312
313 EFI_STATUS
314 EFIAPI
315 SerialRead (
316 IN EFI_SERIAL_IO_PROTOCOL *This,
317 IN OUT UINTN *BufferSize,
318 OUT VOID *Buffer
319 )
320 {
321 UINTN Count = 0;
322
323 if (SerialPortPoll()) {
324 Count = SerialPortRead (Buffer, *BufferSize);
325 }
326
327 if (Count != *BufferSize) {
328 *BufferSize = Count;
329 return EFI_TIMEOUT;
330 }
331
332 return EFI_SUCCESS;
333 }
334
335 //
336 // Template used to initialize the GDB Serial IO protocols
337 //
338 EFI_SERIAL_IO_MODE gSerialIoMode = {
339 0, // ControlMask
340 0, // Timeout
341 FixedPcdGet64 (PcdUartDefaultBaudRate), // BaudRate
342 1, // ReceiveFifoDepth
343 FixedPcdGet8 (PcdUartDefaultDataBits), // DataBits
344 FixedPcdGet8 (PcdUartDefaultParity), // Parity
345 FixedPcdGet8 (PcdUartDefaultStopBits) // StopBits
346 };
347
348
349 EFI_SERIAL_IO_PROTOCOL gSerialIoTemplate = {
350 SERIAL_IO_INTERFACE_REVISION,
351 SerialReset,
352 SerialSetAttributes,
353 SerialSetControl,
354 SerialGetControl,
355 SerialWrite,
356 SerialRead,
357 &gSerialIoMode
358 };
359
360 /**
361 Initialize the state information for the Serial Io Protocol
362
363 @param ImageHandle of the loaded driver
364 @param SystemTable Pointer to the System Table
365
366 @retval EFI_SUCCESS Protocol registered
367 @retval EFI_OUT_OF_RESOURCES Cannot allocate protocol data structure
368 @retval EFI_DEVICE_ERROR Hardware problems
369
370 **/
371 EFI_STATUS
372 EFIAPI
373 SerialDxeInitialize (
374 IN EFI_HANDLE ImageHandle,
375 IN EFI_SYSTEM_TABLE *SystemTable
376 )
377 {
378 EFI_STATUS Status;
379
380 // Make a new handle with Serial IO protocol and its device path on it.
381 Status = gBS->InstallMultipleProtocolInterfaces (
382 &gHandle,
383 &gEfiSerialIoProtocolGuid, &gSerialIoTemplate,
384 &gEfiDevicePathProtocolGuid, &mDevicePath,
385 NULL
386 );
387 ASSERT_EFI_ERROR (Status);
388
389 return Status;
390 }
391