uboot/include/configs/bmips_common.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
   4 */
   5
   6#ifndef __CONFIG_BMIPS_COMMON_H
   7#define __CONFIG_BMIPS_COMMON_H
   8
   9#include <linux/sizes.h>
  10
  11/* ETH */
  12#define CONFIG_PHY_RESET_DELAY          20
  13#define CONFIG_SYS_RX_ETH_BUFFER        6
  14
  15/* UART */
  16#define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200, \
  17                                          230400, 500000, 1500000 }
  18
  19/* Memory usage */
  20#define CONFIG_SYS_MAXARGS              24
  21#define CONFIG_SYS_MALLOC_LEN           SZ_2M
  22#define CONFIG_SYS_BOOTPARAMS_LEN       SZ_128K
  23#define CONFIG_SYS_CBSIZE               SZ_512
  24
  25/* U-Boot */
  26#define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_TEXT_BASE
  27
  28#endif /* __CONFIG_BMIPS_COMMON_H */
  29