diff options
author | Tony Dinh | 2021-07-02 20:08:14 -0700 |
---|---|---|
committer | Stefan Roese | 2021-07-19 08:44:11 +0200 |
commit | 3a2f2983357546ccc70b948de95dd3072c02a35a (patch) | |
tree | 9f72ca85089580c107c428eef3e62ed63421bcc7 /include/configs/nsa310s.h | |
parent | 2fd89bd3b141a5c487eaa0a5352c382c9d8a0c0d (diff) |
arm: kirkwood: NSA310S: Add DM SATA configs
Enable DM SATA, removed IDE driver, and add SATA MV driver.
Signed-off-by: Tony Dinh <mibodhi@gmail.com>
Diffstat (limited to 'include/configs/nsa310s.h')
-rw-r--r-- | include/configs/nsa310s.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/configs/nsa310s.h b/include/configs/nsa310s.h index e38c65a4858..23cf94ec992 100644 --- a/include/configs/nsa310s.h +++ b/include/configs/nsa310s.h @@ -1,8 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0+ */ /* + * Copyright (C) 2015, 2021 Tony Dinh <mibodhi@gmail.com> * Copyright (C) 2015 * Gerald Kerma <dreagle@doukki.net> - * Tony Dinh <mibodhi@gmail.com> * Luka Perkov <luka.perkov@sartura.hr> */ @@ -46,10 +46,10 @@ #endif /* CONFIG_CMD_NET */ /* SATA driver configuration */ -#ifdef CONFIG_IDE -#define __io -#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET -#endif /* CONFIG_IDE */ +#ifdef CONFIG_SATA +#define CONFIG_SYS_SATA_MAX_DEVICE 1 +#define CONFIG_LBA48 +#endif /* CONFIG_SATA */ /* RTC driver configuration */ #ifdef CONFIG_CMD_DATE |