From 57603e2b8475b9f42466ec7dec8c0567ae6dae52 Mon Sep 17 00:00:00 2001 From: Omar Pakker Date: Fri, 29 Jul 2016 23:31:45 +0200 Subject: superio/*: Relocate Kconfig to chip folder. This moves the Kconfig from the Super I/O manufacturer folder to the chip folder instead. This makes new chip commits self-contained unit as edits to the central Kconfig file are no longer required. Change-Id: I7aee07919f2ae9204850c669e0ed3cb17d4de8cd Signed-off-by: Omar Pakker Reviewed-on: https://review.coreboot.org/15973 Tested-by: build bot (Jenkins) Reviewed-by: Idwer Vollering --- src/superio/winbond/Kconfig | 56 ---------------------------------- src/superio/winbond/common/Kconfig | 20 ++++++++++++ src/superio/winbond/w83627dhg/Kconfig | 19 ++++++++++++ src/superio/winbond/w83627ehg/Kconfig | 19 ++++++++++++ src/superio/winbond/w83627hf/Kconfig | 19 ++++++++++++ src/superio/winbond/w83627thg/Kconfig | 19 ++++++++++++ src/superio/winbond/w83627uhg/Kconfig | 19 ++++++++++++ src/superio/winbond/w83667hg-a/Kconfig | 19 ++++++++++++ src/superio/winbond/w83697hf/Kconfig | 19 ++++++++++++ src/superio/winbond/w83977tf/Kconfig | 19 ++++++++++++ src/superio/winbond/wpcd376i/Kconfig | 19 ++++++++++++ 11 files changed, 191 insertions(+), 56 deletions(-) delete mode 100644 src/superio/winbond/Kconfig create mode 100644 src/superio/winbond/common/Kconfig create mode 100644 src/superio/winbond/w83627dhg/Kconfig create mode 100644 src/superio/winbond/w83627ehg/Kconfig create mode 100644 src/superio/winbond/w83627hf/Kconfig create mode 100644 src/superio/winbond/w83627thg/Kconfig create mode 100644 src/superio/winbond/w83627uhg/Kconfig create mode 100644 src/superio/winbond/w83667hg-a/Kconfig create mode 100644 src/superio/winbond/w83697hf/Kconfig create mode 100644 src/superio/winbond/w83977tf/Kconfig create mode 100644 src/superio/winbond/wpcd376i/Kconfig (limited to 'src/superio/winbond') diff --git a/src/superio/winbond/Kconfig b/src/superio/winbond/Kconfig deleted file mode 100644 index 1731a7f0f4..0000000000 --- a/src/superio/winbond/Kconfig +++ /dev/null @@ -1,56 +0,0 @@ -## -## This file is part of the coreboot project. -## -## Copyright (C) 2009 Ronald G. Minnich -## Copyright (C) 2014 Edward O'Callaghan -## -## 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. -## - -# Generic Winbond romstage driver - Just enough UART initialisation code for -# romstage. -config SUPERIO_WINBOND_COMMON_ROMSTAGE - bool - -config SUPERIO_WINBOND_W83627DHG - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83627EHG - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83627HF - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83627THG - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83627UHG - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83667HG_A - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83697HF - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_W83977TF - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE - -config SUPERIO_WINBOND_WPCD376I - bool - select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/common/Kconfig b/src/superio/winbond/common/Kconfig new file mode 100644 index 0000000000..2303547293 --- /dev/null +++ b/src/superio/winbond/common/Kconfig @@ -0,0 +1,20 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +# Generic Winbond romstage driver - Just enough UART initialisation code for +# romstage. +config SUPERIO_WINBOND_COMMON_ROMSTAGE + bool diff --git a/src/superio/winbond/w83627dhg/Kconfig b/src/superio/winbond/w83627dhg/Kconfig new file mode 100644 index 0000000000..46d710a497 --- /dev/null +++ b/src/superio/winbond/w83627dhg/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83627DHG + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83627ehg/Kconfig b/src/superio/winbond/w83627ehg/Kconfig new file mode 100644 index 0000000000..bce73916b2 --- /dev/null +++ b/src/superio/winbond/w83627ehg/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83627EHG + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83627hf/Kconfig b/src/superio/winbond/w83627hf/Kconfig new file mode 100644 index 0000000000..a50768a5e8 --- /dev/null +++ b/src/superio/winbond/w83627hf/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83627HF + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83627thg/Kconfig b/src/superio/winbond/w83627thg/Kconfig new file mode 100644 index 0000000000..163676a247 --- /dev/null +++ b/src/superio/winbond/w83627thg/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83627THG + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83627uhg/Kconfig b/src/superio/winbond/w83627uhg/Kconfig new file mode 100644 index 0000000000..45ef282d31 --- /dev/null +++ b/src/superio/winbond/w83627uhg/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83627UHG + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83667hg-a/Kconfig b/src/superio/winbond/w83667hg-a/Kconfig new file mode 100644 index 0000000000..74b78c2821 --- /dev/null +++ b/src/superio/winbond/w83667hg-a/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83667HG_A + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83697hf/Kconfig b/src/superio/winbond/w83697hf/Kconfig new file mode 100644 index 0000000000..2f1511b28a --- /dev/null +++ b/src/superio/winbond/w83697hf/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83697HF + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/w83977tf/Kconfig b/src/superio/winbond/w83977tf/Kconfig new file mode 100644 index 0000000000..c814467760 --- /dev/null +++ b/src/superio/winbond/w83977tf/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_W83977TF + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE diff --git a/src/superio/winbond/wpcd376i/Kconfig b/src/superio/winbond/wpcd376i/Kconfig new file mode 100644 index 0000000000..d630836fcf --- /dev/null +++ b/src/superio/winbond/wpcd376i/Kconfig @@ -0,0 +1,19 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Ronald G. Minnich +## Copyright (C) 2014 Edward O'Callaghan +## +## 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. +## + +config SUPERIO_WINBOND_WPCD376I + bool + select SUPERIO_WINBOND_COMMON_ROMSTAGE -- cgit v1.2.3