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
| #
| # Copyright (c) 2017 Intel Corporation
| #
| # SPDX-License-Identifier: GPL-2.0+
| #
|
| config INTEL_TANGIER
| bool
| depends on INTEL_MID
| imply INTEL_MID_SERIAL
| imply MMC
| imply MMC_SDHCI
| imply MMC_SDHCI_SDMA
| imply MMC_SDHCI_TANGIER
| imply TANGIER_WATCHDOG
| imply USB
| imply USB_DWC3
|
| if INTEL_TANGIER
|
| config SYS_CAR_ADDR
| hex
| default 0x19200000
|
| config SYS_CAR_SIZE
| hex
| default 0x4000
| help
| Space in bytes in eSRAM used as Cache-As-RAM (CAR).
| Note this size must not exceed eSRAM's total size.
|
| config SYS_USB_OTG_BASE
| hex
| default 0xf9100000
|
| endif
|
|