summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/src/bsp-uboot-board-info.c
blob: 10a99c24c3a96a6a4630f05950e6f00564dd4fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Copyright (c) 2010-2014 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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/u-boot.h>

#ifndef U_BOOT_BOARD_INFO_TEXT_SECTION
#define U_BOOT_BOARD_INFO_TEXT_SECTION
#endif

#ifndef U_BOOT_BOARD_INFO_DATA_SECTION
#define U_BOOT_BOARD_INFO_DATA_SECTION
#endif

U_BOOT_BOARD_INFO_DATA_SECTION bd_t bsp_uboot_board_info;

U_BOOT_BOARD_INFO_TEXT_SECTION void bsp_uboot_copy_board_info(const bd_t *src)
{
  const int *s = (const int *) src;
  int *d = (int *) &bsp_uboot_board_info;
  int i = 0;
  int n = sizeof(*src) / sizeof(int);

  for (i = 0; i < n; ++i) {
    d [i] = s [i];
  }
}