lynxkdi.h 550 B

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