serial_coldfire.h 539 B

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