Change-Id: I4cf69dc3df2afaa8f33864374ea93548ab7ad810 Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-on: https://review.coreboot.org/28830 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
30 lines
812 B
C
30 lines
812 B
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2010 Advanced Micro Devices, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef HUDSON_CHIP_H
|
|
#define HUDSON_CHIP_H
|
|
|
|
struct southbridge_amd_pi_hudson_config
|
|
{
|
|
u32 ide0_enable : 1;
|
|
u32 sata0_enable : 1;
|
|
u32 boot_switch_sata_ide : 1;
|
|
u32 hda_viddid;
|
|
u8 gpp_configuration;
|
|
u8 sd_mode;
|
|
};
|
|
|
|
#endif /* HUDSON_CHIP_H */
|