]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SerialDxe/SerialIo.c
MdeModulePkg: Fix IPv4 double free
[mirror_edk2.git] / MdeModulePkg / Universal / SerialDxe / SerialIo.c
1 /** @file
2 Serial driver that layers on top of a Serial Port Library instance.
3
4 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
5 Copyright (c) 2013-2014, ARM Ltd. All rights reserved.<BR>
6 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
7
8 This program and the accompanying materials
9 are licensed and made available under the terms and conditions of the BSD License
10 which accompanies this distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #include <Library/UefiBootServicesTableLib.h>
19 #include <Library/SerialPortLib.h>
20 #include <Library/DebugLib.h>
21 #include <Library/PcdLib.h>
22
23 #include <Protocol/SerialIo.h>
24 #include <Protocol/DevicePath.h>
25
26 typedef struct {
27 VENDOR_DEVICE_PATH Guid;
28 UART_DEVICE_PATH Uart;
29 EFI_DEVICE_PATH_PROTOCOL End;
30 } SERIAL_DEVICE_PATH;
31
32 /**
33 Reset the serial device.
34
35 @param This Protocol instance pointer.
36
37 @retval EFI_SUCCESS The device was reset.
38 @retval EFI_DEVICE_ERROR The serial device could not be reset.
39
40 **/
41 EFI_STATUS
42 EFIAPI
43 SerialReset (
44 IN EFI_SERIAL_IO_PROTOCOL *This
45 );
46
47 /**
48 Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
49 data bits, and stop bits on a serial device.
50
51 @param This Protocol instance pointer.
52 @param BaudRate The requested baud rate. A BaudRate value of 0 will use the the
53 device's default interface speed.
54 @param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
55 serial interface. A ReceiveFifoDepth value of 0 will use
56 the device's default FIFO depth.
57 @param Timeout The requested time out for a single character in microseconds.
58 This timeout applies to both the transmit and receive side of the
59 interface. A Timeout value of 0 will use the device's default time
60 out value.
61 @param Parity The type of parity to use on this serial device. A Parity value of
62 DefaultParity will use the device's default parity value.
63 @param DataBits The number of data bits to use on the serial device. A DataBits
64 value of 0 will use the device's default data bit setting.
65 @param StopBits The number of stop bits to use on this serial device. A StopBits
66 value of DefaultStopBits will use the device's default number of
67 stop bits.
68
69 @retval EFI_SUCCESS The device was reset.
70 @retval EFI_DEVICE_ERROR The serial device could not be reset.
71
72 **/
73 EFI_STATUS
74 EFIAPI
75 SerialSetAttributes (
76 IN EFI_SERIAL_IO_PROTOCOL *This,
77 IN UINT64 BaudRate,
78 IN UINT32 ReceiveFifoDepth,
79 IN UINT32 Timeout,
80 IN EFI_PARITY_TYPE Parity,
81 IN UINT8 DataBits,
82 IN EFI_STOP_BITS_TYPE StopBits
83 );
84
85 /**
86 Set the control bits on a serial device
87
88 @param This Protocol instance pointer.
89 @param Control Set the bits of Control that are settable.
90
91 @retval EFI_SUCCESS The new control bits were set on the serial device.
92 @retval EFI_UNSUPPORTED The serial device does not support this operation.
93 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
94
95 **/
96 EFI_STATUS
97 EFIAPI
98 SerialSetControl (
99 IN EFI_SERIAL_IO_PROTOCOL *This,
100 IN UINT32 Control
101 );
102
103 /**
104 Retrieves the status of the control bits on a serial device
105
106 @param This Protocol instance pointer.
107 @param Control A pointer to return the current Control signals from the serial device.
108
109 @retval EFI_SUCCESS The control bits were read from the serial device.
110 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
111
112 **/
113 EFI_STATUS
114 EFIAPI
115 SerialGetControl (
116 IN EFI_SERIAL_IO_PROTOCOL *This,
117 OUT UINT32 *Control
118 );
119
120 /**
121 Writes data to a serial device.
122
123 @param This Protocol instance pointer.
124 @param BufferSize On input, the size of the Buffer. On output, the amount of
125 data actually written.
126 @param Buffer The buffer of data to write
127
128 @retval EFI_SUCCESS The data was written.
129 @retval EFI_DEVICE_ERROR The device reported an error.
130 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
131
132 **/
133 EFI_STATUS
134 EFIAPI
135 SerialWrite (
136 IN EFI_SERIAL_IO_PROTOCOL *This,
137 IN OUT UINTN *BufferSize,
138 IN VOID *Buffer
139 );
140
141 /**
142 Reads data from a serial device.
143
144 @param This Protocol instance pointer.
145 @param BufferSize On input, the size of the Buffer. On output, the amount of
146 data returned in Buffer.
147 @param Buffer The buffer to return the data into.
148
149 @retval EFI_SUCCESS The data was read.
150 @retval EFI_DEVICE_ERROR The device reported an error.
151 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
152
153 **/
154 EFI_STATUS
155 EFIAPI
156 SerialRead (
157 IN EFI_SERIAL_IO_PROTOCOL *This,
158 IN OUT UINTN *BufferSize,
159 OUT VOID *Buffer
160 );
161
162 EFI_HANDLE mSerialHandle = NULL;
163
164 SERIAL_DEVICE_PATH mSerialDevicePath = {
165 {
166 { HARDWARE_DEVICE_PATH, HW_VENDOR_DP, { sizeof (VENDOR_DEVICE_PATH), 0} },
167 EFI_CALLER_ID_GUID // Use the driver's GUID
168 },
169 {
170 { MESSAGING_DEVICE_PATH, MSG_UART_DP, { sizeof (UART_DEVICE_PATH), 0} },
171 0, // Reserved
172 0, // BaudRate
173 0, // DataBits
174 0, // Parity
175 0 // StopBits
176 },
177 { END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, { sizeof (EFI_DEVICE_PATH_PROTOCOL), 0 } }
178 };
179
180 //
181 // Template used to initialize the Serial IO protocols.
182 //
183 EFI_SERIAL_IO_MODE mSerialIoMode = {
184 //
185 // value field set in SerialDxeInitialize()?
186 //--------- ------------------- -----------------------------
187 0, // ControlMask
188 1000 * 1000, // Timeout
189 0, // BaudRate yes
190 1, // ReceiveFifoDepth
191 0, // DataBits yes
192 0, // Parity yes
193 0 // StopBits yes
194 };
195
196 EFI_SERIAL_IO_PROTOCOL mSerialIoTemplate = {
197 SERIAL_IO_INTERFACE_REVISION,
198 SerialReset,
199 SerialSetAttributes,
200 SerialSetControl,
201 SerialGetControl,
202 SerialWrite,
203 SerialRead,
204 &mSerialIoMode
205 };
206
207 /**
208 Reset the serial device.
209
210 @param This Protocol instance pointer.
211
212 @retval EFI_SUCCESS The device was reset.
213 @retval EFI_DEVICE_ERROR The serial device could not be reset.
214
215 **/
216 EFI_STATUS
217 EFIAPI
218 SerialReset (
219 IN EFI_SERIAL_IO_PROTOCOL *This
220 )
221 {
222 EFI_STATUS Status;
223 EFI_TPL Tpl;
224
225 Status = SerialPortInitialize ();
226 if (EFI_ERROR (Status)) {
227 return Status;
228 }
229
230 //
231 // Set the Serial I/O mode and update the device path
232 //
233
234 Tpl = gBS->RaiseTPL (TPL_NOTIFY);
235
236 //
237 // Set the Serial I/O mode
238 //
239 This->Mode->ReceiveFifoDepth = 1;
240 This->Mode->Timeout = 1000 * 1000;
241 This->Mode->BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
242 This->Mode->DataBits = (UINT32) PcdGet8 (PcdUartDefaultDataBits);
243 This->Mode->Parity = (UINT32) PcdGet8 (PcdUartDefaultParity);
244 This->Mode->StopBits = (UINT32) PcdGet8 (PcdUartDefaultStopBits);
245
246 //
247 // Check if the device path has actually changed
248 //
249 if (mSerialDevicePath.Uart.BaudRate == This->Mode->BaudRate &&
250 mSerialDevicePath.Uart.DataBits == (UINT8) This->Mode->DataBits &&
251 mSerialDevicePath.Uart.Parity == (UINT8) This->Mode->Parity &&
252 mSerialDevicePath.Uart.StopBits == (UINT8) This->Mode->StopBits
253 ) {
254 gBS->RestoreTPL (Tpl);
255 return EFI_SUCCESS;
256 }
257
258 //
259 // Update the device path
260 //
261 mSerialDevicePath.Uart.BaudRate = This->Mode->BaudRate;
262 mSerialDevicePath.Uart.DataBits = (UINT8) This->Mode->DataBits;
263 mSerialDevicePath.Uart.Parity = (UINT8) This->Mode->Parity;
264 mSerialDevicePath.Uart.StopBits = (UINT8) This->Mode->StopBits;
265
266 Status = gBS->ReinstallProtocolInterface (
267 mSerialHandle,
268 &gEfiDevicePathProtocolGuid,
269 &mSerialDevicePath,
270 &mSerialDevicePath
271 );
272
273 gBS->RestoreTPL (Tpl);
274
275 return Status;
276 }
277
278 /**
279 Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
280 data bits, and stop bits on a serial device.
281
282 @param This Protocol instance pointer.
283 @param BaudRate The requested baud rate. A BaudRate value of 0 will use the the
284 device's default interface speed.
285 @param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
286 serial interface. A ReceiveFifoDepth value of 0 will use
287 the device's default FIFO depth.
288 @param Timeout The requested time out for a single character in microseconds.
289 This timeout applies to both the transmit and receive side of the
290 interface. A Timeout value of 0 will use the device's default time
291 out value.
292 @param Parity The type of parity to use on this serial device. A Parity value of
293 DefaultParity will use the device's default parity value.
294 @param DataBits The number of data bits to use on the serial device. A DataBits
295 value of 0 will use the device's default data bit setting.
296 @param StopBits The number of stop bits to use on this serial device. A StopBits
297 value of DefaultStopBits will use the device's default number of
298 stop bits.
299
300 @retval EFI_SUCCESS The device was reset.
301 @retval EFI_DEVICE_ERROR The serial device could not be reset.
302
303 **/
304 EFI_STATUS
305 EFIAPI
306 SerialSetAttributes (
307 IN EFI_SERIAL_IO_PROTOCOL *This,
308 IN UINT64 BaudRate,
309 IN UINT32 ReceiveFifoDepth,
310 IN UINT32 Timeout,
311 IN EFI_PARITY_TYPE Parity,
312 IN UINT8 DataBits,
313 IN EFI_STOP_BITS_TYPE StopBits
314 )
315 {
316 EFI_STATUS Status;
317 EFI_TPL Tpl;
318
319 Status = SerialPortSetAttributes (&BaudRate, &ReceiveFifoDepth, &Timeout, &Parity, &DataBits, &StopBits);
320 if (EFI_ERROR (Status)) {
321 return Status;
322 }
323
324 //
325 // Set the Serial I/O mode and update the device path
326 //
327
328 Tpl = gBS->RaiseTPL (TPL_NOTIFY);
329
330 //
331 // Set the Serial I/O mode
332 //
333 This->Mode->ReceiveFifoDepth = ReceiveFifoDepth;
334 This->Mode->Timeout = Timeout;
335 This->Mode->BaudRate = BaudRate;
336 This->Mode->DataBits = (UINT32) DataBits;
337 This->Mode->Parity = (UINT32) Parity;
338 This->Mode->StopBits = (UINT32) StopBits;
339
340 //
341 // Check if the device path has actually changed
342 //
343 if (mSerialDevicePath.Uart.BaudRate == BaudRate &&
344 mSerialDevicePath.Uart.DataBits == DataBits &&
345 mSerialDevicePath.Uart.Parity == (UINT8) Parity &&
346 mSerialDevicePath.Uart.StopBits == (UINT8) StopBits
347 ) {
348 gBS->RestoreTPL (Tpl);
349 return EFI_SUCCESS;
350 }
351
352 //
353 // Update the device path
354 //
355 mSerialDevicePath.Uart.BaudRate = BaudRate;
356 mSerialDevicePath.Uart.DataBits = DataBits;
357 mSerialDevicePath.Uart.Parity = (UINT8) Parity;
358 mSerialDevicePath.Uart.StopBits = (UINT8) StopBits;
359
360 Status = gBS->ReinstallProtocolInterface (
361 mSerialHandle,
362 &gEfiDevicePathProtocolGuid,
363 &mSerialDevicePath,
364 &mSerialDevicePath
365 );
366
367 gBS->RestoreTPL (Tpl);
368
369 return Status;
370 }
371
372 /**
373 Set the control bits on a serial device
374
375 @param This Protocol instance pointer.
376 @param Control Set the bits of Control that are settable.
377
378 @retval EFI_SUCCESS The new control bits were set on the serial device.
379 @retval EFI_UNSUPPORTED The serial device does not support this operation.
380 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
381
382 **/
383 EFI_STATUS
384 EFIAPI
385 SerialSetControl (
386 IN EFI_SERIAL_IO_PROTOCOL *This,
387 IN UINT32 Control
388 )
389 {
390 return SerialPortSetControl (Control);
391 }
392
393 /**
394 Retrieves the status of the control bits on a serial device
395
396 @param This Protocol instance pointer.
397 @param Control A pointer to return the current Control signals from the serial device.
398
399 @retval EFI_SUCCESS The control bits were read from the serial device.
400 @retval EFI_DEVICE_ERROR The serial device is not functioning correctly.
401
402 **/
403 EFI_STATUS
404 EFIAPI
405 SerialGetControl (
406 IN EFI_SERIAL_IO_PROTOCOL *This,
407 OUT UINT32 *Control
408 )
409 {
410 return SerialPortGetControl (Control);
411 }
412
413 /**
414 Writes data to a serial device.
415
416 @param This Protocol instance pointer.
417 @param BufferSize On input, the size of the Buffer. On output, the amount of
418 data actually written.
419 @param Buffer The buffer of data to write
420
421 @retval EFI_SUCCESS The data was written.
422 @retval EFI_DEVICE_ERROR The device reported an error.
423 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
424
425 **/
426 EFI_STATUS
427 EFIAPI
428 SerialWrite (
429 IN EFI_SERIAL_IO_PROTOCOL *This,
430 IN OUT UINTN *BufferSize,
431 IN VOID *Buffer
432 )
433 {
434 UINTN Count;
435
436 Count = SerialPortWrite (Buffer, *BufferSize);
437
438 if (Count != *BufferSize) {
439 *BufferSize = Count;
440 return EFI_TIMEOUT;
441 }
442
443 return EFI_SUCCESS;
444 }
445
446 /**
447 Reads data from a serial device.
448
449 @param This Protocol instance pointer.
450 @param BufferSize On input, the size of the Buffer. On output, the amount of
451 data returned in Buffer.
452 @param Buffer The buffer to return the data into.
453
454 @retval EFI_SUCCESS The data was read.
455 @retval EFI_DEVICE_ERROR The device reported an error.
456 @retval EFI_TIMEOUT The data write was stopped due to a timeout.
457
458 **/
459 EFI_STATUS
460 EFIAPI
461 SerialRead (
462 IN EFI_SERIAL_IO_PROTOCOL *This,
463 IN OUT UINTN *BufferSize,
464 OUT VOID *Buffer
465 )
466 {
467 UINTN Count;
468
469 Count = 0;
470
471 if (SerialPortPoll ()) {
472 Count = SerialPortRead (Buffer, *BufferSize);
473 }
474
475 if (Count != *BufferSize) {
476 *BufferSize = Count;
477 return EFI_TIMEOUT;
478 }
479
480 return EFI_SUCCESS;
481 }
482
483 /**
484 Initialization for the Serial Io Protocol.
485
486 @param[in] ImageHandle The firmware allocated handle for the EFI image.
487 @param[in] SystemTable A pointer to the EFI System Table.
488
489 @retval EFI_SUCCESS The entry point is executed successfully.
490 @retval other Some error occurs when executing this entry point.
491
492 **/
493 EFI_STATUS
494 EFIAPI
495 SerialDxeInitialize (
496 IN EFI_HANDLE ImageHandle,
497 IN EFI_SYSTEM_TABLE *SystemTable
498 )
499 {
500 EFI_STATUS Status;
501
502 Status = SerialPortInitialize ();
503 if (EFI_ERROR (Status)) {
504 return Status;
505 }
506
507 mSerialIoMode.BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
508 mSerialIoMode.DataBits = (UINT32) PcdGet8 (PcdUartDefaultDataBits);
509 mSerialIoMode.Parity = (UINT32) PcdGet8 (PcdUartDefaultParity);
510 mSerialIoMode.StopBits = (UINT32) PcdGet8 (PcdUartDefaultStopBits);
511 mSerialDevicePath.Uart.BaudRate = PcdGet64 (PcdUartDefaultBaudRate);
512 mSerialDevicePath.Uart.DataBits = PcdGet8 (PcdUartDefaultDataBits);
513 mSerialDevicePath.Uart.Parity = PcdGet8 (PcdUartDefaultParity);
514 mSerialDevicePath.Uart.StopBits = PcdGet8 (PcdUartDefaultStopBits);
515
516 //
517 // Make a new handle with Serial IO protocol and its device path on it.
518 //
519 Status = gBS->InstallMultipleProtocolInterfaces (
520 &mSerialHandle,
521 &gEfiSerialIoProtocolGuid, &mSerialIoTemplate,
522 &gEfiDevicePathProtocolGuid, &mSerialDevicePath,
523 NULL
524 );
525 ASSERT_EFI_ERROR (Status);
526
527 return Status;
528 }
529