Googler | 25e92cf | 2023-12-13 10:05:01 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (c) 2015 Angelo Dureghello <angelo@sysam.it> |
| 4 | */ |
| 5 | |
| 6 | #ifndef __serial_coldfire_h |
| 7 | #define __serial_coldfire_h |
| 8 | |
| 9 | /* |
| 10 | * struct coldfire_serial_platdata - information about a coldfire port |
| 11 | * |
| 12 | * @base: Uart port base register address |
| 13 | * @port: Uart port index, for cpu with pinmux for uart / gpio |
| 14 | * baudrtatre: Uart port baudrate |
| 15 | */ |
| 16 | struct coldfire_serial_platdata { |
| 17 | unsigned long base; |
| 18 | int port; |
| 19 | int baudrate; |
| 20 | }; |
| 21 | |
| 22 | #endif /* __serial_coldfire_h */ |