blob: 2cb430be8b0da573c400ac51cc882789cf9100c9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Vladimir Barinov60c04672015-02-14 01:06:13 +03002/*
3 * include/configs/porter.h
4 * This file is Porter board configuration.
5 *
6 * Copyright (C) 2015 Renesas Electronics Corporation
7 * Copyright (C) 2015 Cogent Embedded, Inc.
Vladimir Barinov60c04672015-02-14 01:06:13 +03008 */
9
10#ifndef __PORTER_H
11#define __PORTER_H
12
Vladimir Barinov60c04672015-02-14 01:06:13 +030013#include "rcar-gen2-common.h"
14
Marek Vasut7ee37d02018-02-16 01:33:27 +010015#define STACK_AREA_SIZE 0x00100000
Vladimir Barinov60c04672015-02-14 01:06:13 +030016#define LOW_LEVEL_MERAM_STACK \
Tom Rinieaf6ea62022-05-25 12:16:03 -040017 (SYS_INIT_SP_ADDR + STACK_AREA_SIZE - 4)
Vladimir Barinov60c04672015-02-14 01:06:13 +030018
19/* MEMORY */
20#define RCAR_GEN2_SDRAM_BASE 0x40000000
21#define RCAR_GEN2_SDRAM_SIZE (2048u * 1024 * 1024)
22#define RCAR_GEN2_UBOOT_SDRAM_SIZE (1024u * 1024 * 1024)
23
Vladimir Barinov60c04672015-02-14 01:06:13 +030024/* SH Ether */
Tom Rini97148cb2022-12-04 10:13:52 -050025#define CFG_SH_ETHER_USE_PORT 0
Tom Rini7c480ba2022-12-04 10:13:50 -050026#define CFG_SH_ETHER_PHY_ADDR 0x1
Tom Rini85b55112022-12-04 10:13:51 -050027#define CFG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_RMII
Tom Riniff53ecc2022-12-04 10:13:49 -050028#define CFG_SH_ETHER_CACHE_WRITEBACK
Tom Rinic253cea2022-12-04 10:13:48 -050029#define CFG_SH_ETHER_CACHE_INVALIDATE
Tom Rini24513c32022-12-04 10:13:47 -050030#define CFG_SH_ETHER_ALIGNE_SIZE 64
Vladimir Barinov60c04672015-02-14 01:06:13 +030031
32/* Board Clock */
Vladimir Barinov60c04672015-02-14 01:06:13 +030033
Tom Rini0613c362022-12-04 10:03:50 -050034#define CFG_EXTRA_ENV_SETTINGS \
Marek Vasut07a80602018-11-27 00:19:03 +010035 "bootm_size=0x10000000\0"
Marek Vasut7b8eeb42018-02-17 01:21:15 +010036
Marek Vasut7ee37d02018-02-16 01:33:27 +010037/* SPL support */
Marek Vasut9a5483e2018-04-03 12:52:48 +020038
Vladimir Barinov60c04672015-02-14 01:06:13 +030039#endif /* __PORTER_H */