[coreboot-gerrit] Patch set updated for coreboot: cpu/allwinner: Update license headers

Yves Roth (yves.r.roth@gmail.com) gerrit at coreboot.org
Thu Feb 11 20:12:40 CET 2016


Yves Roth (yves.r.roth at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13287

-gerrit

commit b4ff4f6dc34a29aa8d0bbe8211ea749631acfbca
Author: Damien Roth <yves.r.roth at gmail.com>
Date:   Mon Jan 18 12:57:11 2016 -0700

    cpu/allwinner: Update license headers
    
    These licence headers were not compliant with the coreboot standard.
    
    Change-Id: I85bb5f971ab1f8ac3e9589f712370fbf09716b67
    Signed-off-by: Damien Roth <yves.r.roth at gmail.com>
---
 src/cpu/allwinner/a10/bootblock.c       | 16 ++++++++++++++--
 src/cpu/allwinner/a10/bootblock_media.c | 16 ++++++++++++++--
 src/cpu/allwinner/a10/cbmem.c           | 16 ++++++++++++++--
 src/cpu/allwinner/a10/chip.h            | 16 ++++++++++++++--
 src/cpu/allwinner/a10/clock.c           | 15 +++++++++++++--
 src/cpu/allwinner/a10/clock.h           | 15 +++++++++++++--
 src/cpu/allwinner/a10/cpu.c             | 16 ++++++++++++++--
 src/cpu/allwinner/a10/dramc.h           | 21 ++++++++++++++++-----
 src/cpu/allwinner/a10/gpio.c            | 15 +++++++++++++--
 src/cpu/allwinner/a10/gpio.h            | 14 ++++++++++++--
 src/cpu/allwinner/a10/memmap.h          | 15 +++++++++++++--
 src/cpu/allwinner/a10/monotonic_timer.c | 16 ++++++++++++++--
 src/cpu/allwinner/a10/pinmux.c          | 17 +++++++++++++++--
 src/cpu/allwinner/a10/ram_segs.h        | 16 ++++++++++++++--
 src/cpu/allwinner/a10/raminit.c         | 21 ++++++++++++++++-----
 src/cpu/allwinner/a10/timer.c           | 16 ++++++++++++++--
 src/cpu/allwinner/a10/timer.h           | 15 +++++++++++++--
 src/cpu/allwinner/a10/twi.c             | 19 +++++++++++++++----
 src/cpu/allwinner/a10/twi.h             | 15 +++++++++++++--
 src/cpu/allwinner/a10/uart.c            | 17 +++++++++++++++--
 src/cpu/allwinner/a10/uart.h            | 16 ++++++++++++++--
 src/cpu/allwinner/a10/uart_console.c    | 15 +++++++++++++--
 22 files changed, 306 insertions(+), 52 deletions(-)

diff --git a/src/cpu/allwinner/a10/bootblock.c b/src/cpu/allwinner/a10/bootblock.c
index 808982c..471104b 100644
--- a/src/cpu/allwinner/a10/bootblock.c
+++ b/src/cpu/allwinner/a10/bootblock.c
@@ -1,9 +1,21 @@
 /*
- * Allwinner A10 bootblock initialization
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013 Google Inc.
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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  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.
+ *
+ * Allwinner A10 bootblock initialization
+ *
  */
 
 #include <types.h>
diff --git a/src/cpu/allwinner/a10/bootblock_media.c b/src/cpu/allwinner/a10/bootblock_media.c
index 17c6039..c89cac0 100644
--- a/src/cpu/allwinner/a10/bootblock_media.c
+++ b/src/cpu/allwinner/a10/bootblock_media.c
@@ -1,8 +1,20 @@
 /*
- * CBFS accessors for bootblock stage.
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * CBFS accessors for bootblock stage.
+ *
  */
 #include <boot_device.h>
 #include <console/console.h>
diff --git a/src/cpu/allwinner/a10/cbmem.c b/src/cpu/allwinner/a10/cbmem.c
index e051f06..a4c563a 100644
--- a/src/cpu/allwinner/a10/cbmem.c
+++ b/src/cpu/allwinner/a10/cbmem.c
@@ -1,8 +1,20 @@
 /*
- * Provides cbmem utilities for romstage and ramstage
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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  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.
+ *
+ * Provides cbmem utilities for romstage and ramstage
+ *
  */
 
 #include "ram_segs.h"
diff --git a/src/cpu/allwinner/a10/chip.h b/src/cpu/allwinner/a10/chip.h
index 16f60c0..af419ea 100644
--- a/src/cpu/allwinner/a10/chip.h
+++ b/src/cpu/allwinner/a10/chip.h
@@ -1,8 +1,20 @@
 /*
- * Allwinnwer A10 devicetree config struct
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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  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.
+ *
+ * Allwinnwer A10 devicetree config struct
+ *
  */
 
 #include <types.h>
diff --git a/src/cpu/allwinner/a10/clock.c b/src/cpu/allwinner/a10/clock.c
index c22b242..ae50e06 100644
--- a/src/cpu/allwinner/a10/clock.c
+++ b/src/cpu/allwinner/a10/clock.c
@@ -1,8 +1,19 @@
 /*
- * Helpers for clock control and gating on Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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  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.
+ *
+ * Helpers for clock control and gating on Allwinner CPUs
  */
 
 #include "clock.h"
diff --git a/src/cpu/allwinner/a10/clock.h b/src/cpu/allwinner/a10/clock.h
index 0a9cfd6..d1729a3 100644
--- a/src/cpu/allwinner/a10/clock.h
+++ b/src/cpu/allwinner/a10/clock.h
@@ -1,10 +1,21 @@
 /*
- * Definitions for clock control and gating on Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007-2011 Allwinner Technology Co., Ltd.
  *	Tom Cubie <tangliang at allwinnertech.com>
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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. 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.
+ *
+ * Definitions for clock control and gating on Allwinner CPUs
  */
 
 #ifndef CPU_ALLWINNER_A10_CLOCK_H
diff --git a/src/cpu/allwinner/a10/cpu.c b/src/cpu/allwinner/a10/cpu.c
index c2cbc2f..60b93be 100644
--- a/src/cpu/allwinner/a10/cpu.c
+++ b/src/cpu/allwinner/a10/cpu.c
@@ -1,8 +1,20 @@
 /*
- * Ramstage initialization for Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2014 Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Ramstage initialization for Allwinner CPUs
+ *
  */
 
 #include <console/console.h>
diff --git a/src/cpu/allwinner/a10/dramc.h b/src/cpu/allwinner/a10/dramc.h
index 7d44d83..fe50acd 100644
--- a/src/cpu/allwinner/a10/dramc.h
+++ b/src/cpu/allwinner/a10/dramc.h
@@ -1,14 +1,25 @@
 /*
- * Allwinner A10 platform dram register definition.
- *
- * Based on sun4i Linux kernel sources mach-sunxi/pm/standby/dram*.c
- * and earlier U-Boot Allwiner A10 SPL work
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007-2012 Allwinner Technology Co., Ltd.
  *	Berg Xing <bergxing at allwinnertech.com>
  *	Tom Cubie <tangliang at allwinnertech.com>
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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.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.
+ *
+ * Allwinner A10 platform dram register definition.
+ *
+ * Based on sun4i Linux kernel sources mach-sunxi/pm/standby/dram*.c
+ * and earlier U-Boot Allwiner A10 SPL work
  */
 
 #ifndef CPU_ALLWINNER_A10_DRAMC_H
diff --git a/src/cpu/allwinner/a10/gpio.c b/src/cpu/allwinner/a10/gpio.c
index 95854e5..1614c5f 100644
--- a/src/cpu/allwinner/a10/gpio.c
+++ b/src/cpu/allwinner/a10/gpio.c
@@ -1,8 +1,19 @@
 /*
- * Basic GPIO helpers for Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Basic GPIO helpers for Allwinner CPUs
  */
 
 #include "gpio.h"
diff --git a/src/cpu/allwinner/a10/gpio.h b/src/cpu/allwinner/a10/gpio.h
index b20d759..8d95074 100644
--- a/src/cpu/allwinner/a10/gpio.h
+++ b/src/cpu/allwinner/a10/gpio.h
@@ -1,8 +1,18 @@
 /*
- * Definitions for GPIO and pin multiplexing on Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 or (at your option)
+ * any later version.
+ *
+ * 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.
+ *
+ * Definitions for GPIO and pin multiplexing on Allwinner CPUs
  */
 
 #ifndef __CPU_ALLWINNER_A10_PINMUX_H
diff --git a/src/cpu/allwinner/a10/memmap.h b/src/cpu/allwinner/a10/memmap.h
index 78d81dc..2c02ec8 100644
--- a/src/cpu/allwinner/a10/memmap.h
+++ b/src/cpu/allwinner/a10/memmap.h
@@ -1,10 +1,21 @@
 /*
- * Memory map definitions for Allwinner A10 CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007-2011 Allwinner Technology Co., Ltd.
  *	Tom Cubie <tangliang at allwinnertech.com>
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Memory map definitions for Allwinner A10 CPUs
  */
 
 #ifndef CPU_ALLWINNER_A10_MEMMAP_H
diff --git a/src/cpu/allwinner/a10/monotonic_timer.c b/src/cpu/allwinner/a10/monotonic_timer.c
index 16d478a..479dee9 100644
--- a/src/cpu/allwinner/a10/monotonic_timer.c
+++ b/src/cpu/allwinner/a10/monotonic_timer.c
@@ -1,8 +1,20 @@
 /*
- * Placeholder for code to come (needed to complete build)
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 Licenseor (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.
+ *
+ * Placeholder for code to come (needed to complete build)
+ *
  */
 
 #include <timer.h>
diff --git a/src/cpu/allwinner/a10/pinmux.c b/src/cpu/allwinner/a10/pinmux.c
index f5ed19a..b8bf607 100644
--- a/src/cpu/allwinner/a10/pinmux.c
+++ b/src/cpu/allwinner/a10/pinmux.c
@@ -1,8 +1,21 @@
 /*
- * Helpers to multiplex and configure pins on Allwinner SoCs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ *
+ * Helpers to multiplex and configure pins on Allwinner SoCs
+ *
  */
 
 #include "gpio.h"
diff --git a/src/cpu/allwinner/a10/ram_segs.h b/src/cpu/allwinner/a10/ram_segs.h
index 26944e4..fa3684f 100644
--- a/src/cpu/allwinner/a10/ram_segs.h
+++ b/src/cpu/allwinner/a10/ram_segs.h
@@ -1,8 +1,20 @@
 /*
- * How we use DRAM on Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2014  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ *
+ * How we use DRAM on Allwinner CPUs
  */
 
 #include <config.h>
diff --git a/src/cpu/allwinner/a10/raminit.c b/src/cpu/allwinner/a10/raminit.c
index 28fd408..e917e6e 100644
--- a/src/cpu/allwinner/a10/raminit.c
+++ b/src/cpu/allwinner/a10/raminit.c
@@ -1,8 +1,5 @@
 /*
- * Allwinner A10 DRAM controller initialization
- *
- * Based on sun4i Linux kernel sources mach-sunxi/pm/standby/dram*.c
- * and earlier U-Boot Allwiner A10 SPL work
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2012 Henrik Nordstrom <henrik at henriknordstrom.net>
  * Copyright (C) 2013 Luke Kenneth Casson Leighton <lkcl at lkcl.net>
@@ -10,7 +7,21 @@
  *	Berg Xing <bergxing at allwinnertech.com>
  *	Tom Cubie <tangliang at allwinnertech.com>
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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  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.
+ *
+ * Allwinner A10 DRAM controller initialization
+ *
+ * Based on sun4i Linux kernel sources mach-sunxi/pm/standby/dram*.c
+ * and earlier U-Boot Allwiner A10 SPL work
  */
 
 #include "clock.h"
diff --git a/src/cpu/allwinner/a10/timer.c b/src/cpu/allwinner/a10/timer.c
index 5082114..3eacf54 100644
--- a/src/cpu/allwinner/a10/timer.c
+++ b/src/cpu/allwinner/a10/timer.c
@@ -1,8 +1,20 @@
 /*
- * Timer control and delays for Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Timer control and delays for Allwinner CPUs
+ *
  */
 
 #include "timer.h"
diff --git a/src/cpu/allwinner/a10/timer.h b/src/cpu/allwinner/a10/timer.h
index cb12753..7e10f2f 100644
--- a/src/cpu/allwinner/a10/timer.h
+++ b/src/cpu/allwinner/a10/timer.h
@@ -1,10 +1,21 @@
 /*
- * Definitions for timer control on Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007-2011 Allwinner Technology Co., Ltd.
  *	Tom Cubie <tangliang at allwinnertech.com>
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Definitions for timer control on Allwinner CPUs
  */
 
 #ifndef CPU_ALLWINNER_A10_TIMER_H
diff --git a/src/cpu/allwinner/a10/twi.c b/src/cpu/allwinner/a10/twi.c
index f780721..69e08ca 100644
--- a/src/cpu/allwinner/a10/twi.c
+++ b/src/cpu/allwinner/a10/twi.c
@@ -1,12 +1,23 @@
 /*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 Henrik Nordstrom <henrik at henriknordstrom.net>
+ * Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me at 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; 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.
+ *
  * Setup helpers for Two Wire Interface (TWI) (I²C) Allwinner CPUs
  *
  * Only functionality for I²C master is provided.
  * Largely based on the uboot-sunxi code.
- *
- * Copyright (C) 2012 Henrik Nordstrom <henrik at henriknordstrom.net>
- * Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
  */
 
 #include "memmap.h"
diff --git a/src/cpu/allwinner/a10/twi.h b/src/cpu/allwinner/a10/twi.h
index 3dbb302..a8ebdf3 100644
--- a/src/cpu/allwinner/a10/twi.h
+++ b/src/cpu/allwinner/a10/twi.h
@@ -1,8 +1,19 @@
 /*
- * Definitions Two Wire Interface (TWI) (I²C) Allwinner CPUs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Definitions Two Wire Interface (TWI) (I²C) Allwinner CPUs
  */
 
 #ifndef CPU_ALLWINNER_A10_TWI_H
diff --git a/src/cpu/allwinner/a10/uart.c b/src/cpu/allwinner/a10/uart.c
index 3c02867..b976d30 100644
--- a/src/cpu/allwinner/a10/uart.c
+++ b/src/cpu/allwinner/a10/uart.c
@@ -1,8 +1,21 @@
 /*
- * Uart setup helpers for Allwinner SoCs
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 (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.
+ *
+ * Uart setup helpers for Allwinner SoCs
+ *
+ *
  */
 
 #include "uart.h"
diff --git a/src/cpu/allwinner/a10/uart.h b/src/cpu/allwinner/a10/uart.h
index aa94362..a5ed2a9 100644
--- a/src/cpu/allwinner/a10/uart.h
+++ b/src/cpu/allwinner/a10/uart.h
@@ -1,4 +1,18 @@
 /*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at 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; 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.
+ *
  * Definitions for UART on Allwinner CPUs
  *
  * The UART on the A10 seems to be 8250-compatible, however, this has not been
@@ -6,8 +20,6 @@
  * have to re-implement it ARM-style for the time being. The register
  * definitions are present in <uart7250.h>, and are not redefined here.
  *
- * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
  */
 
 #ifndef CPU_ALLWINNER_A10_UART_H
diff --git a/src/cpu/allwinner/a10/uart_console.c b/src/cpu/allwinner/a10/uart_console.c
index 35bff79..64c2a4f 100644
--- a/src/cpu/allwinner/a10/uart_console.c
+++ b/src/cpu/allwinner/a10/uart_console.c
@@ -1,9 +1,20 @@
 /*
- * Glue to UART code to enable serial console
+ * This file is part of the coreboot project.
  *
  * Copyright 2013 Google Inc.
  * Copyright (C) 2013  Alexandru Gagniuc <mr.nuke.me at gmail.com>
- * Subject to the GNU GPL v2, or (at your option) any later version.
+ *
+ * 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 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.
+ *
+ * Glue to UART code to enable serial console
  */
 
 #include <types.h>



More information about the coreboot-gerrit mailing list