serial_bcm283x_mu.h 417 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2016 Stephen Warren <swarren@wwwdotorg.org>
  4. *
  5. * Derived from pl01x code:
  6. * Copyright (c) 2014 Google, Inc
  7. */
  8. #ifndef __serial_bcm283x_mu_h
  9. #define __serial_bcm283x_mu_h
  10. /*
  11. *Information about a serial port
  12. *
  13. * @base: Register base address
  14. */
  15. struct bcm283x_mu_serial_platdata {
  16. unsigned long base;
  17. unsigned int clock;
  18. bool skip_init;
  19. };
  20. #endif