[PATCH v2 2/3] bsps/sparc: Add copyright and license information

Daniel Cederman cederman at gaisler.com
Tue May 13 15:21:07 UTC 2014


---
 .../lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c |   17 +++++++++++++++--
 c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c   |   15 +++++++++++++--
 c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h     |    8 +++++---
 c/src/lib/libbsp/sparc/erc32/include/tm27.h        |    3 ++-
 c/src/lib/libbsp/sparc/erc32/startup/boardinit.S   |   15 +++++++++++++--
 c/src/lib/libbsp/sparc/leon2/cchip/cchip.c         |    7 +++++--
 c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c   |   10 ++++++++--
 c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h     |    8 +++++---
 c/src/lib/libbsp/sparc/leon2/include/cchip.h       |   15 ++++++++++++++-
 c/src/lib/libbsp/sparc/leon2/include/leon.h        |   10 ++++++----
 c/src/lib/libbsp/sparc/leon2/include/rasta.h       |   14 +++++++++++++-
 c/src/lib/libbsp/sparc/leon2/include/tm27.h        |    3 ++-
 .../sparc/leon2/leon_open_eth/leon_open_eth.c      |    8 ++++++--
 .../sparc/leon2/leon_smc91111/leon_smc91111.c      |    9 +++++++++
 c/src/lib/libbsp/sparc/leon2/rasta/rasta.c         |    3 +++
 c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c   |   10 +++++++++-
 c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h     |   10 +++++++++-
 c/src/lib/libbsp/sparc/leon3/include/tm27.h        |    3 ++-
 .../sparc/leon3/leon_open_eth/leon_open_eth.c      |   11 ++++++-----
 .../sparc/leon3/leon_smc91111/leon_smc91111.c      |   16 ++++++++++++----
 20 files changed, 157 insertions(+), 38 deletions(-)

diff --git a/c/src/lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c b/c/src/lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c
index baa39ed..f4ad2f1 100644
--- a/c/src/lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c
+++ b/c/src/lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c
@@ -1,5 +1,9 @@
-/*
- *  THARSYS VME SPARC RT board SONIC Configuration Information
+/**
+ * @file
+ *
+ * @ingroup sparc_erc32
+ *
+ * @brief THARSYS VME SPARC RT board SONIC Configuration Information
  *
  *  References:
  *
@@ -7,6 +11,15 @@
  *     DY 4 Systems Inc., Kanata, Ontario, September, 1996.
  */
 
+/*
+ *  COPYRIGHT (c) 2000.
+ *  European Space Agency.
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
+
 #include <bsp.h>
 #include <libchip/sonic.h>
 #if (SONIC_DEBUG & SONIC_DEBUG_PRINT_REGISTERS)
diff --git a/c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c b/c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c
index bc70883..46bbabe 100644
--- a/c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c
+++ b/c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c
@@ -1,7 +1,18 @@
+/**
+ * @file
+ *
+ * @ingroup sparc_erc32
+ *
+ * @brief Support for gnat/rtems interrupts and exception handling
+ */
+
 /*
+ * COPYRIGHT (c) 1999.
+ * European Space Agency.
  *
- * Support for gnat/rtems interrupts and exception handling.
- * Jiri Gaisler, ESA/ESTEC, 17-02-1999.
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
  */
 
 #include <bsp/gnatcommon.h>
diff --git a/c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h b/c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h
index dc6a70f..e0bc339 100644
--- a/c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h
+++ b/c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h
@@ -2,11 +2,13 @@
  * @file
  * @ingroup sparc_erc32
  * @brief ERC32 generic shared IRQ setup
- */
-
-/* ERC32 generic shared IRQ setup
  *
  * Based on libbsp/shared/include/irq.h.
+ */
+
+/*
+ * Copyright (c) 2012.
+ * Aeroflex Gaisler AB.
  *
  * The license and distribution terms for this file may be
  * found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/erc32/include/tm27.h b/c/src/lib/libbsp/sparc/erc32/include/tm27.h
index c2cba14..958036f 100644
--- a/c/src/lib/libbsp/sparc/erc32/include/tm27.h
+++ b/c/src/lib/libbsp/sparc/erc32/include/tm27.h
@@ -5,7 +5,8 @@
  */
 
 /*
- *  tm27.h
+ *  COPYRIGHT (c) 2006.
+ *  Aeroflex Gaisler AB.
  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/erc32/startup/boardinit.S b/c/src/lib/libbsp/sparc/erc32/startup/boardinit.S
index 2c96af5..9ced1c3 100644
--- a/c/src/lib/libbsp/sparc/erc32/startup/boardinit.S
+++ b/c/src/lib/libbsp/sparc/erc32/startup/boardinit.S
@@ -1,7 +1,18 @@
+/**
+ * @file
+ *
+ * @ingroup sparc_erc32
+ *
+ * @brief Initialise various ERC32 registers
+ */
+
 /*
- *  boardinit.s
+ *  COPYRIGHT (c) 2000.
+ *  European Space Agency.
  *
- *  Initialise various ERC32 registers
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
  */
 
 #include <rtems/asm.h>
diff --git a/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c b/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
index c1f4d43..6dc965f 100644
--- a/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
+++ b/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
@@ -1,11 +1,14 @@
 /** 
  * @file
+ *
  * @ingroup cchip
- * @brief Companion Chip PCI board driver
+ *
+ * @brief GR-701 (Companion Chip) PCI board driver
  */
 
 /*
- *  GR-701 (Companion Chip) PCI board driver
+ *  COPYRIGHT (c) 2007.
+ *  Aeroflex Gaisler AB.
  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c b/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c
index 820252d..1df9500 100644
--- a/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c
+++ b/c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c
@@ -1,13 +1,19 @@
 /**
  * @file
+ *
  * @ingroup sparc_leon2
+ *
  * @brief Support for gnat/rtems iterrupts and exception handling
  */
 
 /*
+ * COPYRIGHT (c) 1999.
+ * European Space Agency.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
  *
- * Support for gnat/rtems interrupts and exception handling.
- * Jiri Gaisler, ESA/ESTEC, 17-02-1999.
  */
 
 #include <bsp/gnatcommon.h>
diff --git a/c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h b/c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h
index 06c901b..086bf25 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h
@@ -2,11 +2,13 @@
  * @file
  * @ingroup sparc_leon2
  * @brief Interrupts definitions
- */
-
-/* LEON2 generic shared IRQ setup
  *
  * Based on libbsp/shared/include/irq.h.
+ */
+
+/*
+ * Copyright (c) 2012.
+ * Aeroflex Gaisler AB.
  *
  * The license and distribution terms for this file may be
  * found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/leon2/include/cchip.h b/c/src/lib/libbsp/sparc/leon2/include/cchip.h
index beb9f74..d8d1e46 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/cchip.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/cchip.h
@@ -1,10 +1,23 @@
 /**
- * @file
  * @defgroup cchip Companion Chip handler
  * @ingroup sparc_leon2
+ *
+ * @file
+ *
+ * @ingroup cchip
+ *
  * @brief Register all drivers supported by the Companion Chip board
  */
 
+/*
+ *  COPYRIGHT (c) 2007.
+ *  Aeroflex Gaisler AB.
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
+
 #ifndef __CCHIP_H__
 #define __CCHIP_H__
 
diff --git a/c/src/lib/libbsp/sparc/leon2/include/leon.h b/c/src/lib/libbsp/sparc/leon2/include/leon.h
index b60c1d5..d498aaf 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/leon.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/leon.h
@@ -1,11 +1,10 @@
 /**
- * @file
  * @defgroup leon1 Leon-1 Handler
  * @ingroup sparc_leon2
+ *
+ * @file
+ * @ingroup leon1
  * @brief Handlers Leon-1
- */
-
-/*  erc32.h
  *
  *  This include file contains information pertaining to the LEON-1.
  *  The LEON-1 is a custom SPARC V7 implementation.
@@ -22,6 +21,9 @@
  *           + Memory Control Register
  *           + Interrupt Control
  *
+ */
+
+/*
  *  COPYRIGHT (c) 1989-1998.
  *  On-Line Applications Research Corporation (OAR).
  *
diff --git a/c/src/lib/libbsp/sparc/leon2/include/rasta.h b/c/src/lib/libbsp/sparc/leon2/include/rasta.h
index 8352900..c0c339c 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/rasta.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/rasta.h
@@ -1,10 +1,22 @@
 /**
- * @file
  * @defgroup leon2_rasta Rasta Handler
  * @ingroup sparc_leon2
+ *
+ * @file
+ * @ingroup leon2_rasta
  * @brief Handles Rasta
  */
 
+/*
+ * COPYRIGHT (c) 2007.
+ * Aeroflex Gaisler AB.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ *
+ */
+
 #ifndef __RASTA_H__
 #define __RASTA_H__
 
diff --git a/c/src/lib/libbsp/sparc/leon2/include/tm27.h b/c/src/lib/libbsp/sparc/leon2/include/tm27.h
index 6fc2399..0d28641 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/tm27.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/tm27.h
@@ -5,7 +5,8 @@
  */
 
 /*
- *  tm27.h
+ *  COPYRIGHT (c) 2006.
+ *  Aeroflex Gaisler AB.
  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/leon2/leon_open_eth/leon_open_eth.c b/c/src/lib/libbsp/sparc/leon2/leon_open_eth/leon_open_eth.c
index 61f82d5..e55c5be 100644
--- a/c/src/lib/libbsp/sparc/leon2/leon_open_eth/leon_open_eth.c
+++ b/c/src/lib/libbsp/sparc/leon2/leon_open_eth/leon_open_eth.c
@@ -5,10 +5,14 @@
  */
 
 /*
- *  LEON2 Opencores Ethernet MAC Configuration Information
+ * Copyright (c) 2004.
+ * Aeroflex Gaisler AB.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
  */
 
-
 #include <bsp.h>
 #include <libchip/open_eth.h>
 #if (OPEN_ETH_DEBUG & OPEN_ETH_DEBUG_PRINT_REGISTERS)
diff --git a/c/src/lib/libbsp/sparc/leon2/leon_smc91111/leon_smc91111.c b/c/src/lib/libbsp/sparc/leon2/leon_smc91111/leon_smc91111.c
index abf1efc..45b9a4a 100644
--- a/c/src/lib/libbsp/sparc/leon2/leon_smc91111/leon_smc91111.c
+++ b/c/src/lib/libbsp/sparc/leon2/leon_smc91111/leon_smc91111.c
@@ -4,6 +4,15 @@
  * @brief SMC91111 Driver
  */
 
+/*
+ * Copyright (c) 2006.
+ * Aeroflex Gaisler AB.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
 #include <rtems.h>
 
 #include <bsp.h>
diff --git a/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c b/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
index b439bcb..e4faaff 100644
--- a/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
+++ b/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
@@ -7,6 +7,9 @@
 /*
  *  GR-RASTA-IO PCI board driver
  *
+ *  COPYRIGHT (c) 2007.
+ *  Aeroflex Gaisler AB.
+ *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
  *  http://www.rtems.org/license/LICENSE.
diff --git a/c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c b/c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c
index 3190627..cc5b102 100644
--- a/c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c
+++ b/c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c
@@ -1,11 +1,19 @@
 /**
  * @file
+ *
  * @ingroup sparc_leon3
+ *
  * @brief Support for gnat/rtems interrupts and exception handling
  */
 
 /*
- * Jiri Gaisler, ESA/ESTEC, 17-02-1999.
+ * COPYRIGHT (c) 1999.
+ * European Space Agency.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ *
  */
 
 #include <bsp/gnatcommon.h>
diff --git a/c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h b/c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h
index a5c6884..b429c86 100644
--- a/c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h
+++ b/c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h
@@ -1,6 +1,14 @@
-/* LEON3 generic shared IRQ setup
+/**
+ * @file
+ * @ingroup sparc_leon3
+ * @brief LEON3 generic shared IRQ setup
  *
  * Based on libbsp/shared/include/irq.h.
+ */
+
+/*
+ * Copyright (c) 2012.
+ * Aeroflex Gaisler AB.
  *
  * The license and distribution terms for this file may be
  * found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/leon3/include/tm27.h b/c/src/lib/libbsp/sparc/leon3/include/tm27.h
index 3ec3be4..00921d4 100644
--- a/c/src/lib/libbsp/sparc/leon3/include/tm27.h
+++ b/c/src/lib/libbsp/sparc/leon3/include/tm27.h
@@ -5,7 +5,8 @@
  */
 
 /*
- *  tm27.h
+ *  COPYRIGHT (c) 2006.
+ *  Aeroflex Gaisler AB.
  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libbsp/sparc/leon3/leon_open_eth/leon_open_eth.c b/c/src/lib/libbsp/sparc/leon3/leon_open_eth/leon_open_eth.c
index 260d75d..9de0372 100644
--- a/c/src/lib/libbsp/sparc/leon3/leon_open_eth/leon_open_eth.c
+++ b/c/src/lib/libbsp/sparc/leon3/leon_open_eth/leon_open_eth.c
@@ -4,12 +4,13 @@
  * @brief LEON3 Opencores Ethernet MAC Configuration Information
  */
 
-/*  COPYRIGHT (c) 2004.
- *  Gaisler Research
+/*
+ * Copyright (c) 2004.
+ * Aeroflex Gaisler AB.
  *
- *  The license and distribution terms for this file may be
- *  found in the file LICENSE in this distribution or at
- *  http://www.rtems.org/license/LICENSE.
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
  */
 
 
diff --git a/c/src/lib/libbsp/sparc/leon3/leon_smc91111/leon_smc91111.c b/c/src/lib/libbsp/sparc/leon3/leon_smc91111/leon_smc91111.c
index a6b73d9..e8bdd52 100644
--- a/c/src/lib/libbsp/sparc/leon3/leon_smc91111/leon_smc91111.c
+++ b/c/src/lib/libbsp/sparc/leon3/leon_smc91111/leon_smc91111.c
@@ -1,8 +1,16 @@
-/*  LEON3 BSP SMC91111 registration and low-level initialization
+/**
+ * @file
+ * @ingroup sparc_leon3
+ * @brief LEON3 BSP SMC91111 registration and low-level initialization
+ */
+
+/*
+ * Copyright (c) 2006.
+ * Aeroflex Gaisler AB.
  *
- *  The license and distribution terms for this file may be
- *  found in the file LICENSE in this distribution or at
- *  http://www.rtems.org/license/LICENSE.
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
  */
 
 #include <bsp.h>
-- 
1.7.9.5




More information about the devel mailing list