Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39624 )
Change subject: nb/intel/sandybridge: Always write to PEGCTL
......................................................................
nb/intel/sandybridge: Always write to PEGCTL
This register needs to be written to once to lock it down. Do so.
Change-Id: I04bd496d064940b51cb9aa1ded6f5b8853ea7334
Signed-off-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/northbridge/intel/sandybridge/northbridge.c
1 file changed, 3 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/39624/1
diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c
index 23c1489..abfc125 100644
--- a/src/northbridge/intel/sandybridge/northbridge.c
+++ b/src/northbridge/intel/sandybridge/northbridge.c
@@ -377,11 +377,12 @@
/*
* Set the PEG clock gating bit. Disables the IO clock on all PEG devices.
*
- * FIXME: If not clock gating, this register still needs to be written to once,
- * to lock it down. Also, never clock gate on Ivy Bridge stepping A0!
+ * FIXME: Never clock gate on Ivy Bridge stepping A0!
*/
MCHBAR32_OR(PEGCTL, 1);
printk(BIOS_DEBUG, "Disabling PEG IO clock.\n");
+ } else {
+ MCHBAR32_AND(PEGCTL, ~1);
}
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/39624
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I04bd496d064940b51cb9aa1ded6f5b8853ea7334
Gerrit-Change-Number: 39624
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: newchange
Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39662 )
Change subject: util/autoport: Emit SPDX license headers
......................................................................
util/autoport: Emit SPDX license headers
Change-Id: I8896b6c92c3126cc611e47b39d596108b90c6bf2
Signed-off-by: Angel Pons <th3fanbus(a)gmail.com>
---
M util/autoport/main.go
1 file changed, 5 insertions(+), 31 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/39662/1
diff --git a/util/autoport/main.go b/util/autoport/main.go
index e3c3fdf..9e62b56 100644
--- a/util/autoport/main.go
+++ b/util/autoport/main.go
@@ -212,25 +212,10 @@
return mf
}
-func Add_gpl(fp *os.File) {
- fp.WriteString(`/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2008-2009 coresystems GmbH
- * Copyright (C) 2014 Vladimir Serbinenko
- *
- * 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.
- */
-
-`)
+func Add_gpl(f *os.File) {
+ fmt.Fprintln(f, "/* SPDX-License-Identifier: GPL-2.0-only */")
+ fmt.Fprintln(f, "/* This file is part of the coreboot project. */")
+ fmt.Fprintln(f)
}
func RestorePCI16Simple(f *os.File, pcidev PCIDevData, addr uint16) {
@@ -900,19 +885,8 @@
gma := Create(ctx, "gma-mainboard.ads")
defer gma.Close()
- gma.WriteString(`--
+ gma.WriteString(`-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
--
To view, visit https://review.coreboot.org/c/coreboot/+/39662
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I8896b6c92c3126cc611e47b39d596108b90c6bf2
Gerrit-Change-Number: 39662
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: newchange
Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39661 )
Change subject: mb/**/gma-mainboard.ads: Use SPDX for GPL-2.0-only
......................................................................
mb/**/gma-mainboard.ads: Use SPDX for GPL-2.0-only
Change-Id: I005bf205142d4d8c5e12378f33d2100d278fa174
Signed-off-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/mainboard/asus/h61m-cs/gma-mainboard.ads
M src/mainboard/asus/p8h61-m_pro/gma-mainboard.ads
M src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3h/gma-mainboard.ads
M src/mainboard/gigabyte/ga-h61m-s2pv/gma-mainboard.ads
M src/mainboard/intel/dcp847ske/gma-mainboard.ads
M src/mainboard/kontron/ktqm77/gma-mainboard.ads
M src/mainboard/lenovo/t420/gma-mainboard.ads
M src/mainboard/lenovo/t430/gma-mainboard.ads
M src/mainboard/lenovo/x131e/gma-mainboard.ads
M src/mainboard/lenovo/x1_carbon_gen1/gma-mainboard.ads
10 files changed, 10 insertions(+), 112 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/61/39661/1
diff --git a/src/mainboard/asus/h61m-cs/gma-mainboard.ads b/src/mainboard/asus/h61m-cs/gma-mainboard.ads
index 8544f77..8fed900 100644
--- a/src/mainboard/asus/h61m-cs/gma-mainboard.ads
+++ b/src/mainboard/asus/h61m-cs/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p8h61-m_pro/gma-mainboard.ads b/src/mainboard/asus/p8h61-m_pro/gma-mainboard.ads
index 4e89f3a..d30ada8 100644
--- a/src/mainboard/asus/p8h61-m_pro/gma-mainboard.ads
+++ b/src/mainboard/asus/p8h61-m_pro/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3h/gma-mainboard.ads b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3h/gma-mainboard.ads
index aabf78f..d6140ee 100644
--- a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3h/gma-mainboard.ads
+++ b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3h/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/gigabyte/ga-h61m-s2pv/gma-mainboard.ads b/src/mainboard/gigabyte/ga-h61m-s2pv/gma-mainboard.ads
index 98b462a..daa6c0f 100644
--- a/src/mainboard/gigabyte/ga-h61m-s2pv/gma-mainboard.ads
+++ b/src/mainboard/gigabyte/ga-h61m-s2pv/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/intel/dcp847ske/gma-mainboard.ads b/src/mainboard/intel/dcp847ske/gma-mainboard.ads
index 4a7a7ac..76effb1 100644
--- a/src/mainboard/intel/dcp847ske/gma-mainboard.ads
+++ b/src/mainboard/intel/dcp847ske/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
---
--- 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.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/kontron/ktqm77/gma-mainboard.ads b/src/mainboard/kontron/ktqm77/gma-mainboard.ads
index 3ac3cd2..b472016 100644
--- a/src/mainboard/kontron/ktqm77/gma-mainboard.ads
+++ b/src/mainboard/kontron/ktqm77/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t420/gma-mainboard.ads b/src/mainboard/lenovo/t420/gma-mainboard.ads
index eb0936d..a26b993 100644
--- a/src/mainboard/lenovo/t420/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t420/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t430/gma-mainboard.ads b/src/mainboard/lenovo/t430/gma-mainboard.ads
index eb0936d..a26b993 100644
--- a/src/mainboard/lenovo/t430/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t430/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x131e/gma-mainboard.ads b/src/mainboard/lenovo/x131e/gma-mainboard.ads
index cd3b98d..7a4edf1 100644
--- a/src/mainboard/lenovo/x131e/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x131e/gma-mainboard.ads
@@ -1,15 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x1_carbon_gen1/gma-mainboard.ads b/src/mainboard/lenovo/x1_carbon_gen1/gma-mainboard.ads
index c9a3d47..229cf6e 100644
--- a/src/mainboard/lenovo/x1_carbon_gen1/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x1_carbon_gen1/gma-mainboard.ads
@@ -1,14 +1,5 @@
+-- SPDX-License-Identifier: GPL-2.0-only
-- This file is part of the coreboot project.
---
--- 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.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
--
To view, visit https://review.coreboot.org/c/coreboot/+/39661
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I005bf205142d4d8c5e12378f33d2100d278fa174
Gerrit-Change-Number: 39661
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-MessageType: newchange
Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39660 )
Change subject: mb/**/gma-mainboard.ads: Use SPDX for GPL-2.0-or-later
......................................................................
mb/**/gma-mainboard.ads: Use SPDX for GPL-2.0-or-later
Change-Id: I78f06b54a6a03d565cf86f1d7bdf37965c3f6ad0
Signed-off-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/mainboard/apple/macbookair4_2/gma-mainboard.ads
M src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
M src/mainboard/asrock/g41c-gs/gma-mainboard.ads
M src/mainboard/asrock/h110m/gma-mainboard.ads
M src/mainboard/asrock/h81m-hds/gma-mainboard.ads
M src/mainboard/asus/maximus_iv_gene-z/gma-mainboard.ads
M src/mainboard/asus/p5ql-em/gma-mainboard.ads
M src/mainboard/asus/p5qpl-am/gma-mainboard.ads
M src/mainboard/asus/p8h61-m_lx/gma-mainboard.ads
M src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
M src/mainboard/asus/p8z77-v_lx2/gma-mainboard.ads
M src/mainboard/compulab/intense_pc/gma-mainboard.ads
M src/mainboard/foxconn/g41s-k/variants/g41m/gma-mainboard.ads
M src/mainboard/foxconn/g41s-k/variants/g41s-k/gma-mainboard.ads
M src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75-d3v/gma-mainboard.ads
M src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3v/gma-mainboard.ads
M src/mainboard/gigabyte/ga-g41m-es2l/gma-mainboard.ads
M src/mainboard/google/auron/gma-mainboard.ads
M src/mainboard/google/beltino/gma-mainboard.ads
M src/mainboard/google/butterfly/gma-mainboard.ads
M src/mainboard/google/eve/gma-mainboard.ads
M src/mainboard/google/fizz/gma-mainboard.ads
M src/mainboard/google/glados/gma-mainboard.ads
M src/mainboard/google/jecht/gma-mainboard.ads
M src/mainboard/google/link/gma-mainboard.ads
M src/mainboard/google/parrot/gma-mainboard.ads
M src/mainboard/google/poppy/gma-mainboard.ads
M src/mainboard/google/slippy/gma-mainboard.ads
M src/mainboard/google/stout/gma-mainboard.ads
M src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
M src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
M src/mainboard/intel/dg41wv/gma-mainboard.ads
M src/mainboard/intel/dg43gt/gma-mainboard.ads
M src/mainboard/lenovo/l520/gma-mainboard.ads
M src/mainboard/lenovo/s230u/gma-mainboard.ads
M src/mainboard/lenovo/t400/variants/r500/gma-mainboard.ads
M src/mainboard/lenovo/t400/variants/t400/coronado-5/gma-mainboard.ads
M src/mainboard/lenovo/t400/variants/t400/malibu-3/gma-mainboard.ads
M src/mainboard/lenovo/t410/gma-mainboard.ads
M src/mainboard/lenovo/t420s/gma-mainboard.ads
M src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
M src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
M src/mainboard/lenovo/t440p/gma-mainboard.ads
M src/mainboard/lenovo/t520/gma-mainboard.ads
M src/mainboard/lenovo/t530/gma-mainboard.ads
M src/mainboard/lenovo/thinkcentre_a58/gma-mainboard.ads
M src/mainboard/lenovo/x200/gma-mainboard.ads
M src/mainboard/lenovo/x201/gma-mainboard.ads
M src/mainboard/lenovo/x220/gma-mainboard.ads
M src/mainboard/lenovo/x230/gma-mainboard.ads
M src/mainboard/packardbell/ms2290/gma-mainboard.ads
M src/mainboard/purism/librem_bdw/gma-mainboard.ads
M src/mainboard/purism/librem_skl/gma-mainboard.ads
M src/mainboard/razer/blade_stealth_kbl/gma-mainboard.ads
M src/mainboard/roda/rv11/variants/rv11/gma-mainboard.ads
M src/mainboard/roda/rv11/variants/rw11/gma-mainboard.ads
M src/mainboard/samsung/lumpy/gma-mainboard.ads
M src/mainboard/samsung/stumpy/gma-mainboard.ads
M src/mainboard/sapphire/pureplatinumh61/gma-mainboard.ads
M src/mainboard/up/squared/gma-mainboard.ads
66 files changed, 80 insertions(+), 784 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/39660/1
diff --git a/src/mainboard/apple/macbookair4_2/gma-mainboard.ads b/src/mainboard/apple/macbookair4_2/gma-mainboard.ads
index 64f6981..6666385 100644
--- a/src/mainboard/apple/macbookair4_2/gma-mainboard.ads
+++ b/src/mainboard/apple/macbookair4_2/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads b/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
index f5736d9..2ddf798 100644
--- a/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
+++ b/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asrock/g41c-gs/gma-mainboard.ads b/src/mainboard/asrock/g41c-gs/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/asrock/g41c-gs/gma-mainboard.ads
+++ b/src/mainboard/asrock/g41c-gs/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asrock/h110m/gma-mainboard.ads b/src/mainboard/asrock/h110m/gma-mainboard.ads
index 1af3a93..d4da142 100644
--- a/src/mainboard/asrock/h110m/gma-mainboard.ads
+++ b/src/mainboard/asrock/h110m/gma-mainboard.ads
@@ -1,17 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
---
--- 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, either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asrock/h81m-hds/gma-mainboard.ads b/src/mainboard/asrock/h81m-hds/gma-mainboard.ads
index 54f85f2..446e94b 100644
--- a/src/mainboard/asrock/h81m-hds/gma-mainboard.ads
+++ b/src/mainboard/asrock/h81m-hds/gma-mainboard.ads
@@ -1,17 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
---
--- 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, either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/maximus_iv_gene-z/gma-mainboard.ads b/src/mainboard/asus/maximus_iv_gene-z/gma-mainboard.ads
index 393d1a1..33eda31 100644
--- a/src/mainboard/asus/maximus_iv_gene-z/gma-mainboard.ads
+++ b/src/mainboard/asus/maximus_iv_gene-z/gma-mainboard.ads
@@ -1,17 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
---
--- 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, either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p5ql-em/gma-mainboard.ads b/src/mainboard/asus/p5ql-em/gma-mainboard.ads
index 43a7d89..f3178a8 100644
--- a/src/mainboard/asus/p5ql-em/gma-mainboard.ads
+++ b/src/mainboard/asus/p5ql-em/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p5qpl-am/gma-mainboard.ads b/src/mainboard/asus/p5qpl-am/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/asus/p5qpl-am/gma-mainboard.ads
+++ b/src/mainboard/asus/p5qpl-am/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p8h61-m_lx/gma-mainboard.ads b/src/mainboard/asus/p8h61-m_lx/gma-mainboard.ads
index a161d2d..3d8f69d 100644
--- a/src/mainboard/asus/p8h61-m_lx/gma-mainboard.ads
+++ b/src/mainboard/asus/p8h61-m_lx/gma-mainboard.ads
@@ -1,17 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
---
--- 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, either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads b/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
index 9e6cb3e..d0e0890 100644
--- a/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
+++ b/src/mainboard/asus/p8z77-m_pro/gma-mainboard.ads
@@ -1,17 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
---
--- 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, either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/asus/p8z77-v_lx2/gma-mainboard.ads b/src/mainboard/asus/p8z77-v_lx2/gma-mainboard.ads
index 37135f9..8507ff7 100644
--- a/src/mainboard/asus/p8z77-v_lx2/gma-mainboard.ads
+++ b/src/mainboard/asus/p8z77-v_lx2/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/compulab/intense_pc/gma-mainboard.ads b/src/mainboard/compulab/intense_pc/gma-mainboard.ads
index 816a87d..95a3e3b 100644
--- a/src/mainboard/compulab/intense_pc/gma-mainboard.ads
+++ b/src/mainboard/compulab/intense_pc/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/foxconn/g41s-k/variants/g41m/gma-mainboard.ads b/src/mainboard/foxconn/g41s-k/variants/g41m/gma-mainboard.ads
index 0bf1021..e737c08 100644
--- a/src/mainboard/foxconn/g41s-k/variants/g41m/gma-mainboard.ads
+++ b/src/mainboard/foxconn/g41s-k/variants/g41m/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/foxconn/g41s-k/variants/g41s-k/gma-mainboard.ads b/src/mainboard/foxconn/g41s-k/variants/g41s-k/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/foxconn/g41s-k/variants/g41s-k/gma-mainboard.ads
+++ b/src/mainboard/foxconn/g41s-k/variants/g41s-k/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75-d3v/gma-mainboard.ads b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75-d3v/gma-mainboard.ads
index 93f8e37..2274e98 100644
--- a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75-d3v/gma-mainboard.ads
+++ b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75-d3v/gma-mainboard.ads
@@ -1,15 +1,5 @@
---
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3v/gma-mainboard.ads b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3v/gma-mainboard.ads
index 93f8e37..2274e98 100644
--- a/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3v/gma-mainboard.ads
+++ b/src/mainboard/gigabyte/ga-b75m-d3h/variants/ga-b75m-d3v/gma-mainboard.ads
@@ -1,15 +1,5 @@
---
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/gigabyte/ga-g41m-es2l/gma-mainboard.ads b/src/mainboard/gigabyte/ga-g41m-es2l/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/gigabyte/ga-g41m-es2l/gma-mainboard.ads
+++ b/src/mainboard/gigabyte/ga-g41m-es2l/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/auron/gma-mainboard.ads b/src/mainboard/google/auron/gma-mainboard.ads
index 79ca007..d71ed93 100644
--- a/src/mainboard/google/auron/gma-mainboard.ads
+++ b/src/mainboard/google/auron/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/beltino/gma-mainboard.ads b/src/mainboard/google/beltino/gma-mainboard.ads
index 3a92b59..43e9edf 100644
--- a/src/mainboard/google/beltino/gma-mainboard.ads
+++ b/src/mainboard/google/beltino/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/butterfly/gma-mainboard.ads b/src/mainboard/google/butterfly/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/google/butterfly/gma-mainboard.ads
+++ b/src/mainboard/google/butterfly/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/eve/gma-mainboard.ads b/src/mainboard/google/eve/gma-mainboard.ads
index 52f6783..45ce538 100644
--- a/src/mainboard/google/eve/gma-mainboard.ads
+++ b/src/mainboard/google/eve/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/fizz/gma-mainboard.ads b/src/mainboard/google/fizz/gma-mainboard.ads
index e47ea7e..12f9d2b 100644
--- a/src/mainboard/google/fizz/gma-mainboard.ads
+++ b/src/mainboard/google/fizz/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/glados/gma-mainboard.ads b/src/mainboard/google/glados/gma-mainboard.ads
index 52f6783..45ce538 100644
--- a/src/mainboard/google/glados/gma-mainboard.ads
+++ b/src/mainboard/google/glados/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/jecht/gma-mainboard.ads b/src/mainboard/google/jecht/gma-mainboard.ads
index 3a92b59..43e9edf 100644
--- a/src/mainboard/google/jecht/gma-mainboard.ads
+++ b/src/mainboard/google/jecht/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/link/gma-mainboard.ads b/src/mainboard/google/link/gma-mainboard.ads
index fae0b5b..fec522e 100644
--- a/src/mainboard/google/link/gma-mainboard.ads
+++ b/src/mainboard/google/link/gma-mainboard.ads
@@ -1,12 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- This program is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/parrot/gma-mainboard.ads b/src/mainboard/google/parrot/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/google/parrot/gma-mainboard.ads
+++ b/src/mainboard/google/parrot/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/poppy/gma-mainboard.ads b/src/mainboard/google/poppy/gma-mainboard.ads
index 52f6783..45ce538 100644
--- a/src/mainboard/google/poppy/gma-mainboard.ads
+++ b/src/mainboard/google/poppy/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/slippy/gma-mainboard.ads b/src/mainboard/google/slippy/gma-mainboard.ads
index 4d1b6c0..3932e33 100644
--- a/src/mainboard/google/slippy/gma-mainboard.ads
+++ b/src/mainboard/google/slippy/gma-mainboard.ads
@@ -1,15 +1,5 @@
---
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/google/stout/gma-mainboard.ads b/src/mainboard/google/stout/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/google/stout/gma-mainboard.ads
+++ b/src/mainboard/google/stout/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads b/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
index c5be10f..27976ed 100644
--- a/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
+++ b/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
index 4ca5343..a7dd834 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
index 6489920..ae8d69f 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
index 0e264d1..fae3544 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
index 0e264d1..fae3544 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/folio_9470m/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
index 0e264d1..fae3544 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads b/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
index c5be10f..27976ed 100644
--- a/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
+++ b/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/intel/dg41wv/gma-mainboard.ads b/src/mainboard/intel/dg41wv/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/intel/dg41wv/gma-mainboard.ads
+++ b/src/mainboard/intel/dg41wv/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/intel/dg43gt/gma-mainboard.ads b/src/mainboard/intel/dg43gt/gma-mainboard.ads
index 43a7d89..f3178a8 100644
--- a/src/mainboard/intel/dg43gt/gma-mainboard.ads
+++ b/src/mainboard/intel/dg43gt/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/l520/gma-mainboard.ads b/src/mainboard/lenovo/l520/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/l520/gma-mainboard.ads
+++ b/src/mainboard/lenovo/l520/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/s230u/gma-mainboard.ads b/src/mainboard/lenovo/s230u/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/s230u/gma-mainboard.ads
+++ b/src/mainboard/lenovo/s230u/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t400/variants/r500/gma-mainboard.ads b/src/mainboard/lenovo/t400/variants/r500/gma-mainboard.ads
index 3623d62..ae8d69f 100644
--- a/src/mainboard/lenovo/t400/variants/r500/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t400/variants/r500/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t400/variants/t400/coronado-5/gma-mainboard.ads b/src/mainboard/lenovo/t400/variants/t400/coronado-5/gma-mainboard.ads
index 9bf6352..1877ffa 100644
--- a/src/mainboard/lenovo/t400/variants/t400/coronado-5/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t400/variants/t400/coronado-5/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t400/variants/t400/malibu-3/gma-mainboard.ads b/src/mainboard/lenovo/t400/variants/t400/malibu-3/gma-mainboard.ads
index 9ab80b5..a6985ca 100644
--- a/src/mainboard/lenovo/t400/variants/t400/malibu-3/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t400/variants/t400/malibu-3/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t410/gma-mainboard.ads b/src/mainboard/lenovo/t410/gma-mainboard.ads
index b75db6c..cc92af1 100644
--- a/src/mainboard/lenovo/t410/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t410/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t420s/gma-mainboard.ads b/src/mainboard/lenovo/t420s/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/t420s/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t420s/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads b/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
index 0e264d1..fae3544 100644
--- a/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads b/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
index c26e55f..6666385 100644
--- a/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
@@ -1,14 +1,5 @@
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
+-- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t440p/gma-mainboard.ads b/src/mainboard/lenovo/t440p/gma-mainboard.ads
index 1626f88..2f914ca 100644
--- a/src/mainboard/lenovo/t440p/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t440p/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t520/gma-mainboard.ads b/src/mainboard/lenovo/t520/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/t520/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t520/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/t530/gma-mainboard.ads b/src/mainboard/lenovo/t530/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/t530/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t530/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/thinkcentre_a58/gma-mainboard.ads b/src/mainboard/lenovo/thinkcentre_a58/gma-mainboard.ads
index bd14b28..3d8f69d 100644
--- a/src/mainboard/lenovo/thinkcentre_a58/gma-mainboard.ads
+++ b/src/mainboard/lenovo/thinkcentre_a58/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x200/gma-mainboard.ads b/src/mainboard/lenovo/x200/gma-mainboard.ads
index 9ab80b5..a6985ca 100644
--- a/src/mainboard/lenovo/x200/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x200/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x201/gma-mainboard.ads b/src/mainboard/lenovo/x201/gma-mainboard.ads
index b75db6c..cc92af1 100644
--- a/src/mainboard/lenovo/x201/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x201/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x220/gma-mainboard.ads b/src/mainboard/lenovo/x220/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/x220/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x220/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/lenovo/x230/gma-mainboard.ads b/src/mainboard/lenovo/x230/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/lenovo/x230/gma-mainboard.ads
+++ b/src/mainboard/lenovo/x230/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/packardbell/ms2290/gma-mainboard.ads b/src/mainboard/packardbell/ms2290/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/packardbell/ms2290/gma-mainboard.ads
+++ b/src/mainboard/packardbell/ms2290/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/purism/librem_bdw/gma-mainboard.ads b/src/mainboard/purism/librem_bdw/gma-mainboard.ads
index 750e46e..1b814a7 100644
--- a/src/mainboard/purism/librem_bdw/gma-mainboard.ads
+++ b/src/mainboard/purism/librem_bdw/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/purism/librem_skl/gma-mainboard.ads b/src/mainboard/purism/librem_skl/gma-mainboard.ads
index 750e46e..1b814a7 100644
--- a/src/mainboard/purism/librem_skl/gma-mainboard.ads
+++ b/src/mainboard/purism/librem_skl/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/razer/blade_stealth_kbl/gma-mainboard.ads b/src/mainboard/razer/blade_stealth_kbl/gma-mainboard.ads
index 82c66e0..dd5fe18 100644
--- a/src/mainboard/razer/blade_stealth_kbl/gma-mainboard.ads
+++ b/src/mainboard/razer/blade_stealth_kbl/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/roda/rv11/variants/rv11/gma-mainboard.ads b/src/mainboard/roda/rv11/variants/rv11/gma-mainboard.ads
index bde759f..94164a1 100644
--- a/src/mainboard/roda/rv11/variants/rv11/gma-mainboard.ads
+++ b/src/mainboard/roda/rv11/variants/rv11/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/roda/rv11/variants/rw11/gma-mainboard.ads b/src/mainboard/roda/rv11/variants/rw11/gma-mainboard.ads
index fe74875..c5b0ec8 100644
--- a/src/mainboard/roda/rv11/variants/rw11/gma-mainboard.ads
+++ b/src/mainboard/roda/rv11/variants/rw11/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/samsung/lumpy/gma-mainboard.ads b/src/mainboard/samsung/lumpy/gma-mainboard.ads
index 105b231..fae3544 100644
--- a/src/mainboard/samsung/lumpy/gma-mainboard.ads
+++ b/src/mainboard/samsung/lumpy/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/samsung/stumpy/gma-mainboard.ads b/src/mainboard/samsung/stumpy/gma-mainboard.ads
index 816a87d..95a3e3b 100644
--- a/src/mainboard/samsung/stumpy/gma-mainboard.ads
+++ b/src/mainboard/samsung/stumpy/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/sapphire/pureplatinumh61/gma-mainboard.ads b/src/mainboard/sapphire/pureplatinumh61/gma-mainboard.ads
index e830f05..bd4e580 100644
--- a/src/mainboard/sapphire/pureplatinumh61/gma-mainboard.ads
+++ b/src/mainboard/sapphire/pureplatinumh61/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/up/squared/gma-mainboard.ads b/src/mainboard/up/squared/gma-mainboard.ads
index 6865970..bffb310 100644
--- a/src/mainboard/up/squared/gma-mainboard.ads
+++ b/src/mainboard/up/squared/gma-mainboard.ads
@@ -1,16 +1,5 @@
---
+-- SPDX-License-Identifier: GPL-2.0-or-later
-- This file is part of the coreboot project.
---
--- 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; either version 2 of the License, or
--- (at your option) any later version.
---
--- 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.
---
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
--
To view, visit https://review.coreboot.org/c/coreboot/+/39660
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I78f06b54a6a03d565cf86f1d7bdf37965c3f6ad0
Gerrit-Change-Number: 39660
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu>
Gerrit-Reviewer: Evgeny Zinoviev <me(a)ch1p.io>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Tristan Corrick <tristan(a)corrick.kiwi>
Gerrit-MessageType: newchange
Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39659 )
Change subject: mb/**/gma-mainboard.ads: Remove copyright statements
......................................................................
mb/**/gma-mainboard.ads: Remove copyright statements
They are already in AUTHORS.
Change-Id: I315c0c57babfa239e3d7c501a4183b8996999e6e
Signed-off-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
M src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
M src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
M src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
M src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
M src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
10 files changed, 0 insertions(+), 20 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/39659/1
diff --git a/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads b/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
index e973817..f5736d9 100644
--- a/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
+++ b/src/mainboard/asrock/b75pro3-m/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads b/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
index 6d5680d..c5be10f 100644
--- a/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
+++ b/src/mainboard/hp/compaq_8200_elite_sff/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2018 Patrick Rudolph <siro(a)das-labor.org>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
index a272d3e..4ca5343 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/2570p/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
index bad712b..6489920 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/2760p/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
index fe4efa2..0e264d1 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/8460p/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
index fe4efa2..0e264d1 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/8470p/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads b/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
index fe4efa2..0e264d1 100644
--- a/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
+++ b/src/mainboard/hp/snb_ivb_laptops/variants/revolve_810_g1/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Iru Cai <mytbk920423(a)gmail.com>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads b/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
index 6d5680d..c5be10f 100644
--- a/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
+++ b/src/mainboard/hp/z220_sff_workstation/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2018 Patrick Rudolph <siro(a)das-labor.org>
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads b/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
index 61793e2..0e264d1 100644
--- a/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t430s/variants/t430s/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Bill XIE persmule(a)gmail.com
---
-- 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; either version 2 of the License, or
diff --git a/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads b/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
index 4cc7433..c26e55f 100644
--- a/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
+++ b/src/mainboard/lenovo/t430s/variants/t431s/gma-mainboard.ads
@@ -1,6 +1,4 @@
--
--- Copyright (C) 2017 Bill XIE persmule(a)gmail.com
---
-- 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; either version 2 of the License, or
--
To view, visit https://review.coreboot.org/c/coreboot/+/39659
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I315c0c57babfa239e3d7c501a4183b8996999e6e
Gerrit-Change-Number: 39659
Gerrit-PatchSet: 1
Gerrit-Owner: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-MessageType: newchange
Venkata Krishna Nimmagadda has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39587 )
Change subject: soc/intel/tigerlake: Enable ACPI support for PMC core OS driver
......................................................................
soc/intel/tigerlake: Enable ACPI support for PMC core OS driver
PMC core driver in OS provides debug hooks to developers and end users to
quickly figure out why their platform is not entering a deeper idle
state such as S0ix. This patch adds INT33A1, a required ACPI device,
to support that PMC core driver in tigerlake platform.
BUG=b:146236297
BRANCH=none
TEST="Build and flash volteer and verify it boots to kernel.
Checked for valid files under /sys/kernel/debug/pmc_core."
Signed-off-by: Venkata Krishna Nimmagadda <venkata.krishna.nimmagadda(a)intel.com>
Change-Id: Ib7e583dc2943461a41d2a7ebde1f16a58a118975
---
M src/soc/intel/tigerlake/acpi/southbridge.asl
1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/39587/1
diff --git a/src/soc/intel/tigerlake/acpi/southbridge.asl b/src/soc/intel/tigerlake/acpi/southbridge.asl
index 8593d07..01a2d07 100644
--- a/src/soc/intel/tigerlake/acpi/southbridge.asl
+++ b/src/soc/intel/tigerlake/acpi/southbridge.asl
@@ -51,3 +51,6 @@
/* PCI _OSC */
#include <soc/intel/common/acpi/pci_osc.asl>
+
+/* PMC Core*/
+#include <soc/intel/common/block/acpi/acpi/pmc.asl>
--
To view, visit https://review.coreboot.org/c/coreboot/+/39587
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib7e583dc2943461a41d2a7ebde1f16a58a118975
Gerrit-Change-Number: 39587
Gerrit-PatchSet: 1
Gerrit-Owner: Venkata Krishna Nimmagadda <Venkata.krishna.nimmagadda(a)intel.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-MessageType: newchange
Hello Wonkyu Kim, Caveh Jalali, Nick Vaccaro,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/39370
to review the following change.
Change subject: mb/google/volteer: Add support for pmc core driver
......................................................................
mb/google/volteer: Add support for pmc core driver
This patch adds INT33A1 device in dsdt to support PMC core driver.
BUG=b:146236297
BRANCH=none
TEST="Build and flash volteer and verify it boots to kernel.
Checked for valid files under /sys/kernel/debug/pmc_core."
Change-Id: Ib4edc7b636725177d508b62d15633534e9f44236
Signed-off-by: Venkata Krishna Nimmagadda <venkata.krishna.nimmagadda(a)intel.com>
Reviewed-on: https://chrome-internal-review.googlesource.com/c/chromeos/third_party/coreā¦
Reviewed-by: Venkata Krishna Nimmagadda <venkata.krishna.nimmagadda(a)intel.corp-partner.google.com>
Reviewed-by: Wonkyu Kim <wonkyu.kim(a)intel.corp-partner.google.com>
Reviewed-by: Caveh Jalali <caveh(a)google.com>
Reviewed-by: Nick Vaccaro <nvaccaro(a)google.com>
Tested-by: Venkata Krishna Nimmagadda <venkata.krishna.nimmagadda(a)intel.corp-partner.google.com>
Commit-Queue: Alex Levin <levinale(a)google.com>
---
A src/soc/intel/common/acpi/pmc.asl
M src/soc/intel/tigerlake/acpi/southbridge.asl
2 files changed, 40 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/39370/1
diff --git a/src/soc/intel/common/acpi/pmc.asl b/src/soc/intel/common/acpi/pmc.asl
new file mode 100644
index 0000000..d576481
--- /dev/null
+++ b/src/soc/intel/common/acpi/pmc.asl
@@ -0,0 +1,37 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2020 Intel Corp.
+ *
+ * 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.
+ */
+
+Device (PEPD)
+{
+ Name (_HID, "INT33A1" /* Intel Power Engine */) // _HID: Hardware ID
+ Name (_CID, EisaId ("PNP0D80") /* System Power Management Controller */) // _CID: Compatible ID
+ Name (_UID, One) // _UID: Unique ID
+ Name (PPD0, Package (0x03)
+ {
+ "\\_SB.PCI0.SAT0",
+ Zero,
+ Package (0x02)
+ {
+ Zero,
+ Package (0x03)
+ {
+ 0xFF,
+ Zero,
+ 0x81
+ }
+ }
+ })
+}
+
diff --git a/src/soc/intel/tigerlake/acpi/southbridge.asl b/src/soc/intel/tigerlake/acpi/southbridge.asl
index 8593d07..1a198b0 100644
--- a/src/soc/intel/tigerlake/acpi/southbridge.asl
+++ b/src/soc/intel/tigerlake/acpi/southbridge.asl
@@ -51,3 +51,6 @@
/* PCI _OSC */
#include <soc/intel/common/acpi/pci_osc.asl>
+
+/* PMC Core*/
+#include <soc/intel/common/acpi/pmc.asl>
--
To view, visit https://review.coreboot.org/c/coreboot/+/39370
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib4edc7b636725177d508b62d15633534e9f44236
Gerrit-Change-Number: 39370
Gerrit-PatchSet: 1
Gerrit-Owner: Venkata Krishna Nimmagadda <Venkata.krishna.nimmagadda(a)intel.com>
Gerrit-Reviewer: Caveh Jalali <caveh(a)chromium.org>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Wonkyu Kim <wonkyu.kim(a)intel.corp-partner.google.com>
Gerrit-MessageType: newchange
Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39629 )
Change subject: mb/hp/z220: Fix VGA graphics init
......................................................................
mb/hp/z220: Fix VGA graphics init
The VGA port has the DDC on port B.
Select the correct Kconfig and fix graphics init failing on VGA.
Tested on HP Z220, libgfxinit reports success and SeaBIOS is displayed
on the connected VGA monitor.
Change-Id: Ie5ec1a2d4606a21e1dc4217ff6fefe5ee35ac543
Signed-off-by: Patrick Rudolph <patrick.rudolph(a)9elements.com>
---
M src/mainboard/hp/z220_sff_workstation/Kconfig
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/39629/1
diff --git a/src/mainboard/hp/z220_sff_workstation/Kconfig b/src/mainboard/hp/z220_sff_workstation/Kconfig
index 8f28baf..82a9562 100644
--- a/src/mainboard/hp/z220_sff_workstation/Kconfig
+++ b/src/mainboard/hp/z220_sff_workstation/Kconfig
@@ -17,6 +17,7 @@
select SUPERIO_NUVOTON_NPCD378
select MAINBOARD_HAS_LIBGFXINIT
select INTEL_GMA_HAVE_VBT
+ select GFX_GMA_ANALOG_I2C_HDMI_B
config VBOOT
select VBOOT_VBNV_CMOS
--
To view, visit https://review.coreboot.org/c/coreboot/+/39629
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie5ec1a2d4606a21e1dc4217ff6fefe5ee35ac543
Gerrit-Change-Number: 39629
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-MessageType: newchange