blob: 0871874ba7c7994f39c6d25b71459816dc1061a9 [file] [log] [blame]
Robbie Zhang3dea69a2016-12-23 12:20:47 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2016-2017 Intel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef _WIFI_CHIP_H_
17#define _WIFI_CHIP_H_
18
19/* WRDS Spec Revision */
20#define WRDS_REVISION 0x0
21
22/* EWRD Spec Revision */
23#define EWRD_REVISION 0x0
24
25/* WRDS Domain type */
26#define WRDS_DOMAIN_TYPE_WIFI 0x7
27
28/* EWRD Domain type */
29#define EWRD_DOMAIN_TYPE_WIFI 0x7
30
Duncan Laurie5c026442016-05-11 14:05:07 -070031struct drivers_intel_wifi_config {
32 unsigned wake; /* Wake pin for ACPI _PRW */
33};
Robbie Zhang3dea69a2016-12-23 12:20:47 -080034
35#endif /* _WIFI_CHIP_H_ */