blob: 59c8793dfe18df60d18bf08b34b0fb2663394389 [file] [log] [blame]
Lee Leahyd4edacb2016-02-08 07:12:30 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2008 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
6 * Copyright (C) 2015 Intel Corporation.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#ifndef _SOC_CHIP_H_
19#define _SOC_CHIP_H_
20
21#include <stdint.h>
22#include <soc/pci_devs.h>
23#include <soc/pm.h>
24
25struct soc_intel_quark_config {
26 uint32_t junk;
27};
28
29extern struct chip_operations soc_ops;
30
31#endif