blob: b1676ce4ab1d42a9b62475009e6b5bf9c89e7b0d [file] [log] [blame]
Uwe Hermann8af6d552010-10-17 19:13:18 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2004 Tyan Computer
5 * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Uwe Hermann8af6d552010-10-17 19:13:18 +000015 */
16
Uwe Hermann7e2fbd52011-01-04 17:36:55 +000017#ifndef SOUTHBRIDGE_NVIDIA_CK804_CHIP_H
18#define SOUTHBRIDGE_NVIDIA_CK804_CHIP_H
arch import user (historical)98d0d302005-07-06 17:13:46 +000019
Uwe Hermann7f3d48c2008-10-02 18:19:17 +000020struct southbridge_nvidia_ck804_config {
Roman Kononov958a1f32007-02-02 22:40:10 +000021 unsigned int usb1_hc_reset : 1;
22 unsigned int ide0_enable : 1;
23 unsigned int ide1_enable : 1;
arch import user (historical)98d0d302005-07-06 17:13:46 +000024 unsigned int sata0_enable : 1;
25 unsigned int sata1_enable : 1;
arch import user (historical)98d0d302005-07-06 17:13:46 +000026 unsigned int mac_eeprom_smbus;
27 unsigned int mac_eeprom_addr;
28};
arch import user (historical)98d0d302005-07-06 17:13:46 +000029
Kyösti Mälkki413e3da2015-02-03 08:05:55 +020030extern struct pci_operations ck804_pci_ops;
31
Uwe Hermann7f3d48c2008-10-02 18:19:17 +000032#endif