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