summaryrefslogblamecommitdiffstats
path: root/bsps/arm/raspberrypi/start/bspstart.c
blob: c5786bfa4ac565d1f6d007496d66adf13d777a79 (plain) (tree)
1
2
3
4
5
6


        
                     
  
                                    







                                                           
                                        













                               
/**
 * @file
 *
 * @ingroup arm_start
 *
 * @brief Raspberry pi startup code.
 */

/*
 * Copyright (c) 2013 by Alan Cudmore
 *
 *  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>
#include <bsp/irq-generic.h>
#include <bsp/irq.h>
#include <bsp/linker-symbols.h>
#include <bsp/stackalloc.h>
#include <bsp/raspberrypi.h>

void bsp_start(void)
{
    bsp_interrupt_initialize();
}