From: Sal <[email protected]> This work was part of GCI 2018.
Closes #2541. --- bsps/m68k/mcf52235/btimer/btimer.c | 11 +++++++---- bsps/m68k/mcf52235/clock/clock.c | 13 +++++++++++++ bsps/m68k/mcf52235/console/console.c | 26 +++++++++++++++++++++----- bsps/m68k/mcf52235/console/debugio.c | 19 ++++++++++++++----- bsps/m68k/mcf52235/include/bsp.h | 14 +++++++++++++- bsps/m68k/mcf52235/include/tm27.h | 10 +++++++++- bsps/m68k/mcf52235/start/init52235.c | 12 ++++++++++++ bsps/m68k/mcf52235/start/linkcmds | 11 ++++++++--- bsps/m68k/mcf52235/start/start.S | 9 +++++++-- 9 files changed, 104 insertions(+), 21 deletions(-) diff --git a/bsps/m68k/mcf52235/btimer/btimer.c b/bsps/m68k/mcf52235/btimer/btimer.c index f912254..5987481 100644 --- a/bsps/m68k/mcf52235/btimer/btimer.c +++ b/bsps/m68k/mcf52235/btimer/btimer.c @@ -2,10 +2,13 @@ * Timer Init * * Use the last DMA timer (DTIM3) as the diagnostic timer. - * - * Author: W. Eric Norum <[email protected]> - * - * COPYRIGHT (c) 2005. + */ + +/* + * COPYRIGHT (c) 2018 + * Eric Norum <[email protected]> + * Matthew Riek <[email protected]> + * Ralf Corsepius <[email protected]> * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be diff --git a/bsps/m68k/mcf52235/clock/clock.c b/bsps/m68k/mcf52235/clock/clock.c index d5e1817..f40abbc 100644 --- a/bsps/m68k/mcf52235/clock/clock.c +++ b/bsps/m68k/mcf52235/clock/clock.c @@ -2,6 +2,19 @@ * Use the last periodic interval timer (PIT2) as the system clock. */ +/* + * COPYRIGHT (c) 2018 + * Alexander Krutwig <[email protected]> + * Matthew Riek <[email protected]> + * Ralf Corsepius <[email protected]> + * Sebastian Huber <[email protected]> + * On-Line Applications Research Corporation (OAR). + * + * 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 <rtems/timecounter.h> #include <bsp.h> diff --git a/bsps/m68k/mcf52235/console/console.c b/bsps/m68k/mcf52235/console/console.c index c2b6e36..68d2b5e 100644 --- a/bsps/m68k/mcf52235/console/console.c +++ b/bsps/m68k/mcf52235/console/console.c @@ -1,8 +1,24 @@ - /* - * Multi UART console serial I/O. - * - * TO DO: Add DMA input/output - */ +/* + * Multi UART console serial I/O. + * + * TO DO: Add DMA input/output + */ + +/* + * COPYRIGHT (c) 2018 + * Eric Norum <[email protected]> + * Kevin Kirspel <[email protected]> + * Matthew Riek <[email protected]> + * Mike Bertosh <[email protected]> + * Ralf Corsepius <[email protected]> + * Sebastian Huber <[email protected]> + * Thomas Doerfler <[email protected]> + * On-Line Applications Research Corporation (OAR). + * + * 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 <stdio.h> #include <fcntl.h> diff --git a/bsps/m68k/mcf52235/console/debugio.c b/bsps/m68k/mcf52235/console/debugio.c index 1fbf4b0..e1c1aaa 100644 --- a/bsps/m68k/mcf52235/console/debugio.c +++ b/bsps/m68k/mcf52235/console/debugio.c @@ -1,8 +1,17 @@ - /* - * Multi UART console serial I/O. - * - * TO DO: Add DMA input/output - */ +/* + * Multi UART console serial I/O. + * + * TO DO: Add DMA input/output + */ + +/* + * COPYRIGHT (c) 2018 + * On-Line Applications Research Corporation (OAR). + * + * 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 <stdio.h> #include <fcntl.h> diff --git a/bsps/m68k/mcf52235/include/bsp.h b/bsps/m68k/mcf52235/include/bsp.h index ef3b928..465ecdd 100644 --- a/bsps/m68k/mcf52235/include/bsp.h +++ b/bsps/m68k/mcf52235/include/bsp.h @@ -7,7 +7,19 @@ */ /* - * mcf52235 BSP header file + * COPYRIGHT (c) 2018 + * Chris Johns <[email protected]> + * Eric Norum <[email protected]> + * Gedare Bloom <[email protected]> + * Matthew Riek <[email protected]> + * Mike Bertosh <[email protected]> + * Ralf Corsepius <[email protected]> + * Sebastian Huber <[email protected]> + * On-Line Applications Research Corporation (OAR). + * + * 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 LIBBSP_M68K_MCF52235_BSP_H diff --git a/bsps/m68k/mcf52235/include/tm27.h b/bsps/m68k/mcf52235/include/tm27.h index b4b62ef..9d3af4b 100644 --- a/bsps/m68k/mcf52235/include/tm27.h +++ b/bsps/m68k/mcf52235/include/tm27.h @@ -1,10 +1,18 @@ -/* +/** * @file + * * @ingroup m68k_mcf52235 + * * @brief Implementations for interrupt mechanisms for Time Test 27 */ /* + * COPYRIGHT (c) 2018 + * Chris Johns <[email protected]> + * Matthew Riek <[email protected]> + * Mike Bertosh <[email protected]> + * Ralf Corsepius <[email protected]> + * * 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/bsps/m68k/mcf52235/start/init52235.c b/bsps/m68k/mcf52235/start/init52235.c index d54b624..505d9ac 100644 --- a/bsps/m68k/mcf52235/start/init52235.c +++ b/bsps/m68k/mcf52235/start/init52235.c @@ -4,6 +4,18 @@ * functions can be called from here. */ +/* + * COPYRIGHT (c) 2018 + * Chris Johns <[email protected]> + * Matthew Riek <[email protected]> + * Sebastian Huber <[email protected]> + * On-Line Applications Research Corporation (OAR). + * + * 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 <bsp/bootcard.h> diff --git a/bsps/m68k/mcf52235/start/linkcmds b/bsps/m68k/mcf52235/start/linkcmds index 0c4d15f..ceac10f 100644 --- a/bsps/m68k/mcf52235/start/linkcmds +++ b/bsps/m68k/mcf52235/start/linkcmds @@ -1,13 +1,18 @@ /* * This file contains directives for the GNU linker which are specific * to the Freescale ColdFire mcf52235 - * - * COPYRIGHT (c) 1989-1999. + */ + +/* + * COPYRIGHT (c) 2018 + * Chris Johns <[email protected]> + * Matthew Riek <[email protected]> + * Sebastian Huber <[email protected]> * On-Line Applications Research Corporation (OAR). * * 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.e + * http://www.rtems.org/license/LICENSE. */ /* diff --git a/bsps/m68k/mcf52235/start/start.S b/bsps/m68k/mcf52235/start/start.S index ecb2c5c..ba92b66 100644 --- a/bsps/m68k/mcf52235/start/start.S +++ b/bsps/m68k/mcf52235/start/start.S @@ -5,8 +5,13 @@ * The name of this entry point is compiler dependent. * It jumps to the BSP which is responsible for performing * all initialization. - * - * COPYRIGHT (c) 1989-1998. + */ + +/* + * COPYRIGHT (c) 2018 + * Chris Johns <[email protected]> + * Matthew Riek <[email protected]> + * Sebastian Huber <[email protected]> * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be -- 1.8.3.1 _______________________________________________ devel mailing list [email protected] http://lists.rtems.org/mailman/listinfo/devel
