summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Cederman <cederman@gaisler.com>2014-05-08 16:33:08 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2014-05-27 09:46:22 +0200
commitc903fc28a9c985c7b85a8c1f948ef1be6665af98 (patch)
tree8f9b43c3dfe4e7a9f1b592f96522c092af7f8465
parentbsps/sparc: Make lines in SPARC BSPs adhere to 80 character limit. (diff)
downloadrtems-c903fc28a9c985c7b85a8c1f948ef1be6665af98.tar.bz2
bsps/sparc: Add copyright and license information
-rw-r--r--c/src/lib/libbsp/sparc/erc32/erc32sonic/erc32sonic.c17
-rw-r--r--c/src/lib/libbsp/sparc/erc32/gnatsupp/gnatsupp.c15
-rw-r--r--c/src/lib/libbsp/sparc/erc32/include/bsp/irq.h8
-rw-r--r--c/src/lib/libbsp/sparc/erc32/include/tm27.h3
-rw-r--r--c/src/lib/libbsp/sparc/erc32/startup/boardinit.S15
-rw-r--r--c/src/lib/libbsp/sparc/leon2/cchip/cchip.c7
-rw-r--r--c/src/lib/libbsp/sparc/leon2/gnatsupp/gnatsupp.c10
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/bsp/irq.h8
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/cchip.h15
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/leon.h10
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/rasta.h14
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/tm27.h3
-rw-r--r--c/src/lib/libbsp/sparc/leon2/leon_open_eth/leon_open_eth.c8
-rw-r--r--c/src/lib/libbsp/sparc/leon2/leon_smc91111/leon_smc91111.c9
-rw-r--r--c/src/lib/libbsp/sparc/leon2/rasta/rasta.c3
-rw-r--r--c/src/lib/libbsp/sparc/leon3/gnatsupp/gnatsupp.c10
-rw-r--r--c/src/lib/libbsp/sparc/leon3/include/bsp/irq.h10
-rw-r--r--c/src/lib/libbsp/sparc/leon3/include/tm27.h3
-rw-r--r--c/src/lib/libbsp/sparc/leon3/leon_open_eth/leon_open_eth.c11
-rw-r--r--c/src/lib/libbsp/sparc/leon3/leon_smc91111/leon_smc91111.c16
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 baa39ed8b6..f4ad2f1e66 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 bc70883766..46bbabe2b0 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 dc6a70f135..e0bc3393d8 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 c2cba142af..958036fbf0 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 2c96af5ac6..9ced1c3639 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 c1f4d43a0e..6dc965f908 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 820252dd4b..1df950039a 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 06c901b9a8..086bf253c4 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 beb9f74917..d8d1e46a7a 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 b60c1d5162..d498aaf0b3 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 8352900f45..c0c339c4d9 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 6fc2399438..0d28641b9b 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 61f82d5051..e55c5beb48 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 abf1efc774..45b9a4aab7 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 b439bcb326..e4faaff1cd 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 31906272a8..cc5b1027a7 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 a5c6884615..b429c864b5 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 3ec3be41fb..00921d4880 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 260d75dd44..9de03720e0 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 a6b73d9f1e..e8bdd528ed 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>