diff options
author | Laurent Itti <laurentitti@gmail.com> | 2015-05-05 17:02:00 -0700 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-05-19 18:37:30 +0200 |
commit | 5cd83b11f934295cdd0e201b54c1c2b99529698f (patch) | |
tree | 84519c2e162653a79c3510373268c0e5b852c0d3 /include | |
parent | a8552c7c9b53d1d4f36b95f2c80812d8a7bb4fff (diff) | |
download | u-boot-5cd83b11f934295cdd0e201b54c1c2b99529698f.tar.gz |
sunxi: add support for UART2 on A23/A33
Add support for UART2 (2-pin version but note that RTS/CTS pins are available
pn that port for possible future use), can be selected in config
by using CONFIG_CONS_INDEX=3
Signed-off-by: Laurent Itti <laurentitti@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/sunxi-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index 0495dc3b8c..f80f006e3d 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -241,6 +241,8 @@ extern int soft_i2c_gpio_scl; #endif #elif CONFIG_CONS_INDEX == 2 && defined(CONFIG_MACH_SUN5I) #define OF_STDOUT_PATH "/soc@01c00000/serial@01c28400:115200" +#elif CONFIG_CONS_INDEX == 3 && defined(CONFIG_MACH_SUN8I) +#define OF_STDOUT_PATH "/soc@01c00000/serial@01c28800:115200" #elif CONFIG_CONS_INDEX == 5 && defined(CONFIG_MACH_SUN8I) #define OF_STDOUT_PATH "/soc@01c00000/serial@01f02800:115200" #else |