lynxkdi.h 550 B

12345678910111213141516171819202122232425
  1. /*
  2. * (C) Copyright 2003
  3. * Orbacom Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __LYNXKDI_H__
  8. #define __LYNXKDI_H__
  9. /* Boot parameter struct passed to kernel
  10. */
  11. typedef struct lynxos_bootparms_t {
  12. uint8_t rsvd1[2]; /* Reserved */
  13. uint8_t ethaddr[6]; /* Ethernet address */
  14. uint16_t flags; /* Boot flags */
  15. uint32_t rate; /* System frequency */
  16. uint32_t clock_ref; /* Time reference */
  17. uint32_t dramsz; /* DRAM size */
  18. uint32_t rsvd2; /* Reserved */
  19. } lynxos_bootparms_t;
  20. #endif /* __LYNXKDI_H__ */