From: Przemyslaw Marczak <p.marczak@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V2 11/11] exynos5-dt-types: add board detection for Odroid XU3/XU3L/XU4.
Date: Tue, 13 Oct 2015 13:59:35 +0200 [thread overview]
Message-ID: <561CF227.2050507@samsung.com> (raw)
In-Reply-To: <CAPnjgZ24QDk4v0XQ4=GH=hbBzCbXxJ+h8umv90a6RsnEhoPgvQ@mail.gmail.com>
Hello Simon,
On 10/03/2015 04:28 PM, Simon Glass wrote:
> Hi Przemyslaw,
>
> On 21 September 2015 at 13:26, Przemyslaw Marczak <p.marczak@samsung.com> wrote:
>> This commit adds additional file with implementation of board
>> detection code for Odroid-XU3/XU4.
>>
>> The detection depends on compatible found in fdt:
>> - "samsung,exynos5" - uses Exynos5 generic code
>> - "samsung,odroidxu3" - try detect XU3 revision
>>
>> There are few revisions of Odroid XU3/XU4, each can be detected
>> by checking the value of channel 9 of built-in ADC:
>> Rev ADC Board
>> 0.1 0 XU3 0.1
>> 0.2 372 XU3 0.2 | XU3L - no DISPLAYPORT
>> 0.3 1280 XU4 0.1
>>
>> The detection code depends on the ADC+10% value.
>>
>> Implementation of functions:
>> - set_board_type() - read ADC and set type
>> - get_board_rev() - returns board revision: 1..3
>> - get_board_type() - returns board type string
>>
>> Additional functions with return values of bool:
>> - board_is_generic() - true if found compatible "samsung,exynos5"
>> but not "samsung,odroidxu3"
>> - board_is_odroidxu3() - true if found compatible "samsung,odroidxu3"
>> and one of XU3 revision.
>> - board_is_odroidxu4() - true if found compatible "samsung,odroidxu3"
>> and XU4 revision.
>>
>> After I2C controller init, the get_board_type() can check
>> if the XU3 board is a "Lite" variant, by probing chip
>> 0x40 on I2C0 (INA231 - exists only on non-lite).
>> This is useful for setting fdt file name at misc_init_r().
>>
>> Enabled configs:
>> - CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
>> - CONFIG_ODROID_REV_AIN
>> - CONFIG_REVISION_TAG
>> - CONFIG_BOARD_TYPES
>>
>> Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
>> ---
>> Changes V2:
>> - move detection code from exynos5-dt.c to exynos5-dt-types.c
>> - add header with board type function declarations
>> - check for compatible before do the detection
>> - update the ADC max values with 20% tolerance
>> - fix XU4 adc value, related to mistake from table in XU4 schematic
>> - return "Not supported" for XU4 when calls one of:
>> --dfu_get_alt_boot()
>> --dfu_get_alt_system()
>> - extend ${dfu_alt_system} by strings:
>> -- 'exynos5422-odroidxu3-lite.dtb'
>> -- 'exynos5422-odroidxu4.dtb' - allows prepare card on XU3
>> ---
>> board/samsung/common/Makefile | 5 +-
>> board/samsung/common/exynos5-dt-types.c | 196 ++++++++++++++++++++++++++++++++
>> board/samsung/common/exynos5-dt.c | 12 ++
>> configs/odroid-xu3_defconfig | 2 +
>> include/configs/odroid_xu3.h | 12 ++
>> include/samsung/exynos5-dt-types.h | 27 +++++
>> 6 files changed, 253 insertions(+), 1 deletion(-)
>> create mode 100644 board/samsung/common/exynos5-dt-types.c
>> create mode 100644 include/samsung/exynos5-dt-types.h
>
> Reviewed-by: Simon Glass <sjg@chromium.org>
>
> See nits below.
>
Ok.
>>
>> diff --git a/board/samsung/common/Makefile b/board/samsung/common/Makefile
>> index 6cbd906..ef1a8f3 100644
>> --- a/board/samsung/common/Makefile
>> +++ b/board/samsung/common/Makefile
>> @@ -11,5 +11,8 @@ obj-$(CONFIG_MISC_COMMON) += misc.o
>>
>> ifndef CONFIG_SPL_BUILD
>> obj-$(CONFIG_BOARD_COMMON) += board.o
>> -obj-$(CONFIG_EXYNOS5_DT) += exynos5-dt.o
>> +ifdef CONFIG_EXYNOS5_DT
>> +obj-y += exynos5-dt.o
>> +obj-$(CONFIG_BOARD_TYPES) += exynos5-dt-types.o
>> +endif
>> endif
>> diff --git a/board/samsung/common/exynos5-dt-types.c b/board/samsung/common/exynos5-dt-types.c
>> new file mode 100644
>> index 0000000..1364e98
>> --- /dev/null
>> +++ b/board/samsung/common/exynos5-dt-types.c
>> @@ -0,0 +1,196 @@
>> +/*
>> + * Copyright (C) 2015 Samsung Electronics
>> + * Przemyslaw Marczak <p.marczak@samsung.com>
>> + *
>> + * SPDX-License-Identifier: GPL-2.0+
>> + */
>> +
>> +#include <adc.h>
>> +#include <common.h>
>> +#include <dm.h>
>> +#include <errno.h>
>> +#include <fdtdec.h>
>> +#include <power/pmic.h>
>> +#include <power/regulator.h>
>> +#include <power/s2mps11.h>
>> +#include <samsung/exynos5-dt-types.h>
>> +#include <samsung/misc.h>
>> +
>> +DECLARE_GLOBAL_DATA_PTR;
>> +
>> +static const struct udevice_id board_ids[] = {
>> + { .compatible = "samsung,odroidxu3", .data = EXYNOS5_BOARD_ODROID_XU3 },
>> + { .compatible = "samsung,exynos5", .data = EXYNOS5_BOARD_GENERIC },
>> + { },
>> +};
>> +
>> +/**
>> + * Odroix XU3/4 board revisions:
>> + * Rev ADCmax Board
>> + * 0.1 0 XU3 0.1
>> + * 0.2 410 XU3 0.2 | XU3L - no DISPLAYPORT (probe I2C0:0x40 / INA231)
>> + * 0.3 1408 XU4 0.1
>> + * Use +10 % for ADC value tolerance.
>> + */
>> +struct odroid_rev_info odroid_info[] = {
>> + { EXYNOS5_BOARD_ODROID_XU3_REV01, 1, 10, "xu3" },
>> + { EXYNOS5_BOARD_ODROID_XU3_REV02, 2, 410, "xu3" },
>> + { EXYNOS5_BOARD_ODROID_XU4_REV01, 1, 1408, "xu4" },
>> + { EXYNOS5_BOARD_ODROID_UNKNOWN, 0, 4095, "unknown" },
>> +};
>> +
>> +static unsigned int odroid_get_rev(void)
>> +{
>> + int i;
>> +
>> + for (i = 0; i < ARRAY_SIZE(odroid_info); i++) {
>> + if (odroid_info[i].board_type == gd->board_type)
>> + return odroid_info[i].board_rev;
>> + }
>> +
>> + return 0;
>> +}
>> +
>> +static int odroid_get_board_type(void)
>> +{
>> + unsigned int adcval;
>> + int ret, i;
>> +
>> + ret = adc_channel_single_shot("adc", CONFIG_ODROID_REV_AIN, &adcval);
>> + if (ret)
>> + goto rev_default;
>> +
>> + for (i = 0; i < ARRAY_SIZE(odroid_info); i++) {
>> + /* ADC tolerance: +20 % */
>> + if (adcval < odroid_info[i].adc_val)
>> + return odroid_info[i].board_type;
>> + }
>> +
>> +rev_default:
>> + return EXYNOS5_BOARD_ODROID_XU3;
>> +}
>> +
>> +/**
>> + * odroid_get_type_str - returns pointer to one of the board type string.
>> + * Board types: "xu3", "xu3-lite", "xu4". However the "xu3lite" can be
>> + * detected only when the i2c controller is ready to use. Fortunately,
>> + * XU3 and XU3L are compatible, and the information about board lite
>> + * revision is needed before booting the linux, to set proper environment
>> + * variable: $fdtfile.
>> + */
>> +static const char *odroid_get_type_str(void)
>> +{
>> + const char *type_xu3l = "xu3-lite";
>> + struct udevice *dev, *chip;
>> + int i, ret;
>> +
>> + if (gd->board_type != EXYNOS5_BOARD_ODROID_XU3_REV02)
>> + goto exit;
>> +
>> + ret = pmic_get("s2mps11", &dev);
>> + if (ret)
>> + goto exit;
>> +
>> + /* Enable LDO26: 3.0V */
>> + ret = pmic_reg_write(dev, S2MPS11_REG_L26CTRL,
>> + S2MPS11_LDO26_ENABLE);
>> + if (ret)
>> + goto exit;
>> +
>> + /* Check XU3Lite by probe INA231 I2C0:0x40 */
>> + ret = uclass_get_device(UCLASS_I2C, 0, &dev);
>
> Yikes! What happens if you want to add a driver for this?
>
This may look much more pretty, but the INA's driver is not needed at
U-Boot and also I don't like implement everything at once, since as you
can see it takes some time to review and fixing again and again.
>> + if (ret)
>> + goto exit;
>> +
>> + ret = dm_i2c_probe(dev, 0x40, 0x0, &chip);
>> + if (ret)
>> + return type_xu3l;
>> +
>> +exit:
>> + for (i = 0; i < ARRAY_SIZE(odroid_info); i++) {
>> + if (odroid_info[i].board_type == gd->board_type)
>> + return odroid_info[i].name;
>> + }
>> +
>> + return NULL;
>> +}
>> +
>> +bool board_is_odroidxu3(void)
>> +{
>> + if (gd->board_type >= EXYNOS5_BOARD_ODROID_XU3 &&
>> + gd->board_type <= EXYNOS5_BOARD_ODROID_XU3_REV02)
>> + return true;
>> +
>> + return false;
>> +}
>> +
>> +bool board_is_odroidxu4(void)
>> +{
>> + if (gd->board_type == EXYNOS5_BOARD_ODROID_XU4_REV01)
>> + return true;
>> +
>> + return false;
>> +}
>> +
>> +bool board_is_generic(void)
>> +{
>> + if (gd->board_type == EXYNOS5_BOARD_GENERIC)
>> + return true;
>> +
>> + return false;
>> +}
>> +
>> +/**
>> + * get_board_rev() - return detected board revision.
>> + *
>> + * @return: return board revision number for XU3 or 0 for generic
>> + */
>> +u32 get_board_rev(void)
>> +{
>> + if (board_is_generic())
>> + return 0;
>> +
>> + return odroid_get_rev();
>> +}
>> +
>> +/**
>> + * get_board_type() - returns board type string.
>> + *
>> + * @return: return board type string for XU3 or empty string for generic
>> + */
>> +const char *get_board_type(void)
>> +{
>> + const char *generic = "";
>> +
>> + if (board_is_generic())
>> + return generic;
>> +
>> + return odroid_get_type_str();
>> +}
>> +
>> +/**
>> + * set_board_type() - set board type in gd->board_type.
>> + * As default type set EXYNOS5_BOARD_GENERIC, if detect Odroid,
>> + * then set it's proper type.
>
> its
>
Right.
>> + */
>> +void set_board_type(void)
>> +{
>> + const struct udevice_id *of_match = board_ids;
>> + int ret;
>> +
>> + gd->board_type = EXYNOS5_BOARD_GENERIC;
>> +
>> + while (of_match->compatible) {
>> + ret = fdt_node_check_compatible(gd->fdt_blob, 0,
>> + of_match->compatible);
>> + if (ret)
>> + of_match++;
>> +
>> + gd->board_type = of_match->data;
>> + break;
>> + }
>> +
>> + /* If Odroid, then check it's revision */
>
> its
>
ok.
>> + if (board_is_odroidxu3())
>> + gd->board_type = odroid_get_board_type();
>> +}
>> diff --git a/board/samsung/common/exynos5-dt.c b/board/samsung/common/exynos5-dt.c
>> index 4250f72..4d9e151 100644
>> --- a/board/samsung/common/exynos5-dt.c
>> +++ b/board/samsung/common/exynos5-dt.c
>> @@ -27,7 +27,10 @@
>> #include <power/pmic.h>
>> #include <power/max77686_pmic.h>
>> #include <power/regulator.h>
>> +#include <power/s2mps11.h>
>> #include <power/s5m8767.h>
>> +#include <samsung/exynos5-dt-types.h>
>> +#include <samsung/misc.h>
>> #include <tmu.h>
>>
>> DECLARE_GLOBAL_DATA_PTR;
>> @@ -335,15 +338,24 @@ int board_usb_init(int index, enum usb_init_type init)
>> #ifdef CONFIG_SET_DFU_ALT_INFO
>> char *get_dfu_alt_system(char *interface, char *devstr)
>> {
>> + char *info = "Not supported!";
>> +
>> + if (board_is_odroidxu4())
>> + return info;
>> +
>> return getenv("dfu_alt_system");
>> }
>>
>> char *get_dfu_alt_boot(char *interface, char *devstr)
>> {
>> + char *info = "Not supported!";
>> struct mmc *mmc;
>> char *alt_boot;
>> int dev_num;
>>
>> + if (board_is_odroidxu4())
>> + return info;
>> +
>> dev_num = simple_strtoul(devstr, NULL, 10);
>>
>> mmc = find_mmc_device(dev_num);
>> diff --git a/configs/odroid-xu3_defconfig b/configs/odroid-xu3_defconfig
>> index f38c37b..d7e5698 100644
>> --- a/configs/odroid-xu3_defconfig
>> +++ b/configs/odroid-xu3_defconfig
>> @@ -16,3 +16,5 @@ CONFIG_VIDEO_BRIDGE=y
>> CONFIG_SYS_PROMPT="ODROID-XU3 # "
>> CONFIG_USB=y
>> CONFIG_DM_USB=y
>> +CONFIG_ADC=y
>> +CONFIG_ADC_EXYNOS=y
>> diff --git a/include/configs/odroid_xu3.h b/include/configs/odroid_xu3.h
>> index 3c70158..648e48b 100644
>> --- a/include/configs/odroid_xu3.h
>> +++ b/include/configs/odroid_xu3.h
>> @@ -94,6 +94,8 @@
>> "boot.scr fat 0 1;" \
>> "boot.cmd fat 0 1;" \
>> "exynos5422-odroidxu3.dtb fat 0 1;" \
>> + "exynos5422-odroidxu3-lite.dtb fat 0 1;" \
>> + "exynos5422-odroidxu4.dtb fat 0 1;" \
>> "boot part 0 1;" \
>> "root part 0 2\0"
>>
>> @@ -113,9 +115,19 @@
>>
>> /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */
>> #define CONFIG_MISC_COMMON
>> +#define CONFIG_MISC_INIT_R
>> #define CONFIG_SET_DFU_ALT_INFO
>> #define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K)
>>
>> +/* Set soc_rev, soc_id, board_rev, boardname, fdtfile */
>> +#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
>> +#define CONFIG_ODROID_REV_AIN 9
>> +#define CONFIG_REVISION_TAG
>> +#define CONFIG_BOARD_TYPES
>> +
>> +#undef CONFIG_SYS_BOARD
>> +#define CONFIG_SYS_BOARD "odroid"
>> +
>> /* Define new extra env settings, including DFU settings */
>> #undef CONFIG_EXTRA_ENV_SETTINGS
>> #define CONFIG_EXTRA_ENV_SETTINGS \
>> diff --git a/include/samsung/exynos5-dt-types.h b/include/samsung/exynos5-dt-types.h
>> new file mode 100644
>> index 0000000..479e2e7
>> --- /dev/null
>> +++ b/include/samsung/exynos5-dt-types.h
>> @@ -0,0 +1,27 @@
>> +#ifndef _EXYNOS5_DT_H_
>> +#define _EXYNOS5_DT_H_
>> +
>> +enum {
>> + EXYNOS5_BOARD_GENERIC,
>> +
>> + EXYNOS5_BOARD_ODROID_XU3,
>> + EXYNOS5_BOARD_ODROID_XU3_REV01,
>> + EXYNOS5_BOARD_ODROID_XU3_REV02,
>> + EXYNOS5_BOARD_ODROID_XU4_REV01,
>> + EXYNOS5_BOARD_ODROID_UNKNOWN,
>> +
>> + EXYNOS5_BOARD_COUNT,
>> +};
>> +
>> +struct odroid_rev_info {
>> + int board_type;
>> + int board_rev;
>> + int adc_val;
>> + const char *name;
>> +};
>> +
>> +bool board_is_generic(void);
>> +bool board_is_odroidxu3(void);
>> +bool board_is_odroidxu4(void);
>> +
>> +#endif
>> --
>> 1.9.1
>>
>
> I can't help wondering why we don't just have separate device trees
> for these boards. It seems a pain to try to support them all with this
> auto-detection. Anyway, I think I already asked this and you're pretty
> sure this is what you want. I do understand the need to make it
> painless for users.
>
> Regards,
> Simon
>
It's much more easy for us, to support several Odroid revisions with the
same SoC by the single U-Boot binary. It's also easy for the users, if
they have a single binary for actually the same board variants.
And it's one less thing, that can be broken by the mistake :)
Thank you for your helpful comments, I will take them into account in V3.
Best regards,
--
Przemyslaw Marczak
Samsung R&D Institute Poland
Samsung Electronics
p.marczak at samsung.com
next prev parent reply other threads:[~2015-10-13 11:59 UTC|newest]
Thread overview: 106+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-28 13:59 [U-Boot] [PATCH 0/7] Add board detection for Odroid XU3 / XU3Lite / XU4 Przemyslaw Marczak
2015-08-28 13:59 ` [U-Boot] [PATCH 1/7] s5p: cpu_info: use defined CPU name if available Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-09-04 15:04 ` Przemyslaw Marczak
2015-08-28 13:59 ` [U-Boot] [PATCH 2/7] peach-pi: define CPU name for SoC Exynos5800 Przemyslaw Marczak
2015-08-28 13:59 ` [U-Boot] [PATCH 3/7] Exynos5422/5800: set cpu id to 0x5422 Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-08-28 13:59 ` [U-Boot] [PATCH 4/7] dm: pmic: add s2mps11 PMIC I/O driver Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-09-04 15:04 ` Przemyslaw Marczak
2015-09-07 0:11 ` Minkyu Kang
2015-09-09 10:31 ` Przemyslaw Marczak
2015-08-28 13:59 ` [U-Boot] [PATCH 5/7] odroid-xu3: enable s2mps11 PMIC support Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-08-28 13:59 ` [U-Boot] [PATCH 6/7] Exynos: add internal ADC driver Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-09-04 15:04 ` Przemyslaw Marczak
2015-08-28 13:59 ` [U-Boot] [PATCH 7/7] exynos5-dt: add board detection for Odroid XU3/XU3L/XU4 Przemyslaw Marczak
2015-09-01 0:33 ` Simon Glass
2015-09-04 15:04 ` Przemyslaw Marczak
2015-08-30 19:03 ` [U-Boot] [PATCH 0/7] Add board detection for Odroid XU3 / XU3Lite / XU4 Anand Moon
2015-08-31 12:17 ` Przemyslaw Marczak
2015-10-21 1:58 ` Siarhei Siamashka
2015-10-21 9:47 ` Anand Moon
2015-10-21 9:57 ` Anand Moon
2015-10-21 10:13 ` Przemyslaw Marczak
2015-08-31 13:22 ` Simon Glass
2015-08-31 18:29 ` Przemyslaw Marczak
2015-08-31 23:13 ` Simon Glass
2015-09-04 15:04 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 00/11] " Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 01/11] samsung: board/misc: check returned pointer for get_board_type() calls Przemyslaw Marczak
2015-10-03 14:27 ` Simon Glass
2015-09-21 12:26 ` [U-Boot] [PATCH V2 02/11] s5p: cpu_info: print "cpu-model" if exists in dts Przemyslaw Marczak
2015-10-03 14:27 ` Simon Glass
2015-10-13 11:57 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 03/11] Peach-Pi: dts: add cpu-model string Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-10-13 11:57 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 04/11] Exynos5422/5800: set cpu id to 0x5422 Przemyslaw Marczak
2015-09-21 12:47 ` Jaehoon Chung
2015-09-21 13:01 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 05/11] dm: pmic: add s2mps11 PMIC I/O driver Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-10-13 11:57 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 06/11] dm: adc: add simple ADC uclass implementation Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-10-13 11:57 ` Przemyslaw Marczak
2015-09-21 12:26 ` [U-Boot] [PATCH V2 07/11] dm: adc: add Exynos54xx compatible ADC driver Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-10-13 11:58 ` Przemyslaw Marczak
2015-10-19 2:20 ` Simon Glass
2015-09-21 12:26 ` [U-Boot] [PATCH V2 08/11] Odroid-XU3: enable s2mps11 PMIC support Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-09-21 12:26 ` [U-Boot] [PATCH V2 09/11] Exynos54xx: dts: add ADC node Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-09-21 12:26 ` [U-Boot] [PATCH V2 10/11] Odroid-XU3: dts: enable ADC, with request for pre-reloc bind Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-09-21 12:26 ` [U-Boot] [PATCH V2 11/11] exynos5-dt-types: add board detection for Odroid XU3/XU3L/XU4 Przemyslaw Marczak
2015-10-03 14:28 ` Simon Glass
2015-10-13 11:59 ` Przemyslaw Marczak [this message]
2015-10-19 2:21 ` Simon Glass
2015-09-27 12:20 ` [U-Boot] [PATCH V2 00/11] Add board detection for Odroid XU3 / XU3Lite / XU4 Anand Moon
2015-09-28 10:19 ` Przemyslaw Marczak
2015-10-01 11:07 ` Przemyslaw Marczak
2015-10-03 14:30 ` Simon Glass
2015-10-13 11:59 ` Przemyslaw Marczak
2015-10-27 12:07 ` [U-Boot] [PATCH V3 00/14] " Przemyslaw Marczak
2015-10-27 12:07 ` [U-Boot] [PATCH V3 01/14] samsung: board/misc: check returned pointer for get_board_type() calls Przemyslaw Marczak
2015-10-28 18:50 ` Simon Glass
2015-10-30 3:00 ` Anand Moon
2015-10-27 12:07 ` [U-Boot] [PATCH V3 02/14] s5p: cpu_info: print "cpu-model" if exists in dts Przemyslaw Marczak
2015-10-28 18:50 ` Simon Glass
2015-10-30 3:01 ` Anand Moon
2015-10-27 12:07 ` [U-Boot] [PATCH V3 03/14] Peach-Pi: dts: add cpu-model string Przemyslaw Marczak
2015-10-28 18:50 ` Simon Glass
2015-10-30 3:02 ` Anand Moon
2015-10-27 12:07 ` [U-Boot] [PATCH V3 04/14] Exynos5422/5800: set cpu id to 0x5422 Przemyslaw Marczak
2015-10-30 3:03 ` Anand Moon
2015-10-27 12:07 ` [U-Boot] [PATCH V3 05/14] dm: pmic: add s2mps11 PMIC I/O driver Przemyslaw Marczak
2015-10-28 18:50 ` Simon Glass
2015-10-30 3:04 ` Anand Moon
2015-10-27 12:07 ` [U-Boot] [PATCH V3 06/14] dm: regulator: add function device_get_supply_regulator() Przemyslaw Marczak
2015-11-05 18:25 ` Simon Glass
2015-10-27 12:08 ` [U-Boot] [PATCH V3 07/14] dm: adc: add simple ADC uclass implementation Przemyslaw Marczak
2015-10-27 13:53 ` Przemyslaw Marczak
2015-11-05 18:25 ` Simon Glass
2015-10-27 12:08 ` [U-Boot] [PATCH V3 08/14] dm: adc: add Exynos54xx compatible ADC driver Przemyslaw Marczak
2015-11-06 0:15 ` Simon Glass
2015-10-27 12:08 ` [U-Boot] [PATCH V3 09/14] Odroid-XU3: enable s2mps11 PMIC support Przemyslaw Marczak
2015-10-30 3:09 ` Anand Moon
2015-10-27 12:08 ` [U-Boot] [PATCH V3 10/14] Exynos54xx: dts: add ADC node Przemyslaw Marczak
2015-10-28 18:50 ` Simon Glass
2015-10-29 13:58 ` Przemyslaw Marczak
2015-11-06 3:15 ` Simon Glass
2015-11-06 8:48 ` Przemyslaw Marczak
2015-10-27 12:08 ` [U-Boot] [PATCH V3 11/14] Odroid-XU3: dts: enable ADC, with request for pre-reloc bind Przemyslaw Marczak
2015-10-27 12:08 ` [U-Boot] [PATCH V3 12/14] exynos5-dt-types: add board detection for Odroid XU3/XU3L/XU4 Przemyslaw Marczak
2015-10-30 3:06 ` Anand Moon
2015-10-27 12:08 ` [U-Boot] [PATCH V3 13/14] sandbox: add ADC driver Przemyslaw Marczak
2015-11-04 9:52 ` [U-Boot] [PATCH] Add missing file: include/sandbox-adc.h Przemyslaw Marczak
2015-11-06 12:07 ` Simon Glass
2015-11-06 0:15 ` [U-Boot] [PATCH V3 13/14] sandbox: add ADC driver Simon Glass
2015-10-27 12:08 ` [U-Boot] [PATCH V3 14/14] sandbox: add ADC unit tests Przemyslaw Marczak
2015-11-06 0:15 ` Simon Glass
2015-11-02 5:37 ` [U-Boot] [PATCH V3 00/14] Add board detection for Odroid XU3 / XU3Lite / XU4 Minkyu Kang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=561CF227.2050507@samsung.com \
--to=p.marczak@samsung.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.