diff options
Diffstat (limited to 'src/drivers/spi')
-rw-r--r-- | src/drivers/spi/Kconfig | 2 | ||||
-rw-r--r-- | src/drivers/spi/acpi/Kconfig | 2 | ||||
-rw-r--r-- | src/drivers/spi/acpi/Makefile.inc | 2 | ||||
-rw-r--r-- | src/drivers/spi/acpi/acpi.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/acpi/chip.h | 2 | ||||
-rw-r--r-- | src/drivers/spi/adesto.c | 21 | ||||
-rw-r--r-- | src/drivers/spi/amic.c | 14 | ||||
-rw-r--r-- | src/drivers/spi/atmel.c | 14 | ||||
-rw-r--r-- | src/drivers/spi/bitbang.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/boot_device_rw_nommap.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/cbfs_spi.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/eon.c | 16 | ||||
-rw-r--r-- | src/drivers/spi/flashconsole.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/gigadevice.c | 7 | ||||
-rw-r--r-- | src/drivers/spi/macronix.c | 11 | ||||
-rw-r--r-- | src/drivers/spi/spansion.c | 7 | ||||
-rw-r--r-- | src/drivers/spi/spi-generic.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/spi_flash.c | 13 | ||||
-rw-r--r-- | src/drivers/spi/spi_flash_internal.h | 16 | ||||
-rw-r--r-- | src/drivers/spi/spi_winbond.h | 3 | ||||
-rw-r--r-- | src/drivers/spi/spiconsole.c | 2 | ||||
-rw-r--r-- | src/drivers/spi/sst.c | 22 | ||||
-rw-r--r-- | src/drivers/spi/stmicro.c | 9 | ||||
-rw-r--r-- | src/drivers/spi/winbond.c | 3 |
24 files changed, 85 insertions, 93 deletions
diff --git a/src/drivers/spi/Kconfig b/src/drivers/spi/Kconfig index b15a502cfd..8b9c25ee98 100644 --- a/src/drivers/spi/Kconfig +++ b/src/drivers/spi/Kconfig @@ -1,8 +1,6 @@ ## ## This file is part of the coreboot project. ## -## Copyright (C) 2012 The Chromium OS Authors. -## ## 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. diff --git a/src/drivers/spi/acpi/Kconfig b/src/drivers/spi/acpi/Kconfig index c1653d55e4..ca255da18a 100644 --- a/src/drivers/spi/acpi/Kconfig +++ b/src/drivers/spi/acpi/Kconfig @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright 2017 Google Inc. -# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/acpi/Makefile.inc b/src/drivers/spi/acpi/Makefile.inc index 7ae6e459d9..154d52e800 100644 --- a/src/drivers/spi/acpi/Makefile.inc +++ b/src/drivers/spi/acpi/Makefile.inc @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright 2017 Google Inc. -# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/acpi/acpi.c b/src/drivers/spi/acpi/acpi.c index 7c8a887242..7e107d6f67 100644 --- a/src/drivers/spi/acpi/acpi.c +++ b/src/drivers/spi/acpi/acpi.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2017 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/acpi/chip.h b/src/drivers/spi/acpi/chip.h index fa7d8a15d2..14e5f8a789 100644 --- a/src/drivers/spi/acpi/chip.h +++ b/src/drivers/spi/acpi/chip.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2017 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/adesto.c b/src/drivers/spi/adesto.c index c74fd701c9..695bdab2ea 100644 --- a/src/drivers/spi/adesto.c +++ b/src/drivers/spi/adesto.c @@ -1,13 +1,20 @@ /* - * adesto.c - * Driver for Adesto Technologies SPI flash - * Copyright 2014 Orion Technologies, LLC - * Author: Chris Douglass <cdouglass <at> oriontechnologies.com> + * 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. + */ + +/* + * Driver for Adesto Technologies SPI flash * based on winbond.c - * Copyright 2008, Network Appliance Inc. - * Author: Jason McMullan <mcmullan <at> netapp.com> - * Licensed under the GPL-2 or later. */ #include <console/console.h> diff --git a/src/drivers/spi/amic.c b/src/drivers/spi/amic.c index 6e1234baa7..4943779a1a 100644 --- a/src/drivers/spi/amic.c +++ b/src/drivers/spi/amic.c @@ -1,11 +1,15 @@ /* - * Copyright (C) 2014 Idwer Vollering <vidwer@gmail.com> + * This file is part of the coreboot project. * - * Based on winbond.c + * 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. * - * Copyright 2008, Network Appliance Inc. - * Author: Jason McMullan <mcmullan <at> netapp.com> - * Licensed under the GPL-2 or later. + * 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. */ #include <console/console.h> diff --git a/src/drivers/spi/atmel.c b/src/drivers/spi/atmel.c index ac7f0d92e7..8f88880ad6 100644 --- a/src/drivers/spi/atmel.c +++ b/src/drivers/spi/atmel.c @@ -1,9 +1,15 @@ /* - * Copyright 2008, Network Appliance Inc. - * Copyright 2014, Sage Electronic Engineering, LLC. + * This file is part of the coreboot project. * - * Author: Jason McMullan <mcmullan <at> netapp.com> - * Licensed under the GPL-2 or later. + * 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. */ #include <console/console.h> diff --git a/src/drivers/spi/bitbang.c b/src/drivers/spi/bitbang.c index d858345859..d0caa04816 100644 --- a/src/drivers/spi/bitbang.c +++ b/src/drivers/spi/bitbang.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2018 Google LLC - * * 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. diff --git a/src/drivers/spi/boot_device_rw_nommap.c b/src/drivers/spi/boot_device_rw_nommap.c index cc8fbf7c5d..47683144a8 100644 --- a/src/drivers/spi/boot_device_rw_nommap.c +++ b/src/drivers/spi/boot_device_rw_nommap.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2016 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/cbfs_spi.c b/src/drivers/spi/cbfs_spi.c index ad282c695b..fca61004ff 100644 --- a/src/drivers/spi/cbfs_spi.c +++ b/src/drivers/spi/cbfs_spi.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2014 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/eon.c b/src/drivers/spi/eon.c index c6fdba17b8..5b527d1211 100644 --- a/src/drivers/spi/eon.c +++ b/src/drivers/spi/eon.c @@ -1,9 +1,15 @@ /* - * (C) Copyright 2010, ucRobotics Inc. - * Copyright (c) 2014, Sage Electronic Engineering, LLC - * . - * Author: Chong Huang <chuang@ucrobotics.com> - * Licensed under the GPL-2 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. */ #include <console/console.h> diff --git a/src/drivers/spi/flashconsole.c b/src/drivers/spi/flashconsole.c index 3109012bd4..2a0d2358b9 100644 --- a/src/drivers/spi/flashconsole.c +++ b/src/drivers/spi/flashconsole.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2015 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/gigadevice.c b/src/drivers/spi/gigadevice.c index 71433cc1ed..05a73df77c 100644 --- a/src/drivers/spi/gigadevice.c +++ b/src/drivers/spi/gigadevice.c @@ -1,10 +1,5 @@ /* - * Copyright (c) 2012, Google Inc. - * - * Based on drivers/spi/winbond.c - * - * Copyright 2008, Network Appliance Inc. - * Jason McMullan <mcmullan@netapp.com> + * 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 diff --git a/src/drivers/spi/macronix.c b/src/drivers/spi/macronix.c index a41e96f671..25784b4dc3 100644 --- a/src/drivers/spi/macronix.c +++ b/src/drivers/spi/macronix.c @@ -1,14 +1,5 @@ /* - * Copyright 2009(C) Marvell International Ltd. and its affiliates - * Prafulla Wadaskar <prafulla@marvell.com> - * - * Based on drivers/mtd/spi/stmicro.c - * - * Copyright 2008, Network Appliance Inc. - * Jason McMullan <mcmullan@netapp.com> - * - * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. - * TsiChung Liew (Tsi-Chung.Liew@freescale.com) + * 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 diff --git a/src/drivers/spi/spansion.c b/src/drivers/spi/spansion.c index c3a071e956..cee93b2ac6 100644 --- a/src/drivers/spi/spansion.c +++ b/src/drivers/spi/spansion.c @@ -1,10 +1,5 @@ /* - * Copyright (C) 2009 Freescale Semiconductor, Inc. - * - * Author: Mingkai Hu (Mingkai.hu@freescale.com) - * Based on stmicro.c by Wolfgang Denk (wd@denx.de), - * TsiChung Liew (Tsi-Chung.Liew@freescale.com), - * and Jason McMullan (mcmullan@netapp.com) + * 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 diff --git a/src/drivers/spi/spi-generic.c b/src/drivers/spi/spi-generic.c index 84a42d1c9c..28402182dd 100644 --- a/src/drivers/spi/spi-generic.c +++ b/src/drivers/spi/spi-generic.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2016 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/src/drivers/spi/spi_flash.c b/src/drivers/spi/spi_flash.c index 9dfecea6dc..cdaa5b3557 100644 --- a/src/drivers/spi/spi_flash.c +++ b/src/drivers/spi/spi_flash.c @@ -1,10 +1,15 @@ /* - * SPI flash interface + * This file is part of the coreboot project. * - * Copyright (C) 2008 Atmel Corporation - * Copyright (C) 2010 Reinhard Meyer, EMK Elektronik + * 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. * - * Licensed under the GPL-2 or later. + * 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. */ #include <arch/early_variables.h> diff --git a/src/drivers/spi/spi_flash_internal.h b/src/drivers/spi/spi_flash_internal.h index 95c51a8b05..36fa66d67c 100644 --- a/src/drivers/spi/spi_flash_internal.h +++ b/src/drivers/spi/spi_flash_internal.h @@ -1,7 +1,19 @@ /* - * SPI flash internal definitions + * 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. * - * Copyright (C) 2008 Atmel Corporation + * 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. + */ + +/* + * SPI flash internal definitions */ #ifndef SPI_FLASH_INTERNAL_H diff --git a/src/drivers/spi/spi_winbond.h b/src/drivers/spi/spi_winbond.h index e21571c56c..73029527ee 100644 --- a/src/drivers/spi/spi_winbond.h +++ b/src/drivers/spi/spi_winbond.h @@ -1,9 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2008, Network Appliance Inc. - * Author: Jason McMullan <mcmullan <at> netapp.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; version 2 of the License. diff --git a/src/drivers/spi/spiconsole.c b/src/drivers/spi/spiconsole.c index ef9902475e..fffeafaaea 100644 --- a/src/drivers/spi/spiconsole.c +++ b/src/drivers/spi/spiconsole.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2015 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/spi/sst.c b/src/drivers/spi/sst.c index 429afa095d..348d06c3e8 100644 --- a/src/drivers/spi/sst.c +++ b/src/drivers/spi/sst.c @@ -1,15 +1,19 @@ /* - * Driver for SST serial flashes + * This file is part of the coreboot project. * - * (C) Copyright 2000-2002 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * Copyright 2008, Network Appliance Inc. - * Jason McMullan <mcmullan@netapp.com> - * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. - * TsiChung Liew (Tsi-Chung.Liew@freescale.com) - * Copyright (c) 2008-2009 Analog Devices Inc. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * - * Licensed under the GPL-2 or later. + * 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. + */ + +/* + * Driver for SST serial flashes */ #include <console/console.h> diff --git a/src/drivers/spi/stmicro.c b/src/drivers/spi/stmicro.c index 98f6e4e5b2..ddff859d38 100644 --- a/src/drivers/spi/stmicro.c +++ b/src/drivers/spi/stmicro.c @@ -1,12 +1,5 @@ /* - * (C) Copyright 2000-2002 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * Copyright 2008, Network Appliance Inc. - * Jason McMullan <mcmullan@netapp.com> - * - * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. - * TsiChung Liew (Tsi-Chung.Liew@freescale.com) + * 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 diff --git a/src/drivers/spi/winbond.c b/src/drivers/spi/winbond.c index 3e0a2669d9..00a7bf90cd 100644 --- a/src/drivers/spi/winbond.c +++ b/src/drivers/spi/winbond.c @@ -1,6 +1,5 @@ /* - * Copyright 2008, Network Appliance Inc. - * Jason McMullan <mcmullan@netapp.com> + * 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 |