blob: 38640277b295b2e834328f3889eb9d46966b2b23 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk1f4bb372003-07-27 00:21:01 +00002/*
3 * (C) Copyright 2003
4 * Orbacom Systems, Inc.
wdenk1f4bb372003-07-27 00:21:01 +00005 */
6
7#ifndef __LYNXKDI_H__
8#define __LYNXKDI_H__
9
10
11/* Boot parameter struct passed to kernel
12 */
13typedef 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__ */