* [U-Boot] Pull request: u-boot-spi/next
@ 2015-12-30 10:31 Jagan Teki
2015-12-30 10:34 ` Jagan Teki
2015-12-31 13:52 ` [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h Tom Rini
0 siblings, 2 replies; 11+ messages in thread
From: Jagan Teki @ 2015-12-30 10:31 UTC (permalink / raw)
To: u-boot
Hi Tom,
Please pull this PR.
thanks!
Jagan.
The following changes since commit 312db9f75f50b339310474d72c8524cef2bd7931:
armv7: omap-common: Rework SPL board_mmc_init() (2015-12-14 13:42:54 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-spi.git master
for you to fetch changes up to 25aade812e40f2e869575199c64e35ebcdf5554b:
defconfig: am437x_sk_evm: enable spi driver model (2015-12-29 13:27:46 +0530)
----------------------------------------------------------------
Jagan Teki (24):
sf: Get spi locally from spi_flash
spi: make mode visible to both dm and non-dm
spi: Use mode instead of op_mode_tx
spi: Rename SPI_TX_BP|QPP to SPI_TX_BYTE|QUAD
sf: Move spi_read_cmds_array locally
sf: Rename spi_flash_set_* functions
sf: Rename bank_end to bar_end in read_bar
sf: Remove spi_flash_remove
sf: Minor cleanup
sf: Use BIT macro
sf: Fix quad bit set for micron devices
sf: Read back and check once spansion quad bit set
sf: Read back and check once macronix quad bit set
sf: Write quad bit along with read status
spi: Remove SPI_OPM_RX_EXTN
spi: Remove SPI_OPM_RX_DIO|QIOF
spi: Rename SPI_OPM_RX_* to SPI_RX_*
spi: Rename op_mode_rx to mode_rx
spi: Move flags macro's to spi_slave{} members
spi: Fix bit assignment with flags
spi: Use BIT macro
spi: Minor cleanup
sf: Make IO modes at last in read modes
spi: Add SPI_TX_DUAL mode
Mugunthan V N (17):
drivers: spi: ti_qspi: do not hard code chip select for memory map configuration
drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion
drivers: spi: ti_qspi: prepare driver for DM conversion
dm: core: Add a new api to get indexed device address
spi: Add support for dual and quad mode
dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
dts: dra7: add spi alias for qspi
drivers: spi: ti_qspi: convert driver to adopt device driver model
arm: dts: dra7: add qspi register maps for memory map and control module
arm: dts: am437x-gp-evm: add spi-flash comaptible for flash
arm: dts: dra7-evm: add spi-flash comaptible for flash
arm: dts: dra72-evm: add spi-flash comaptible for flash
defconfig: dra72_evm: enable spi driver model
defconfig: dra74_evm: enable spi driver model
am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
arm: dts: am4372: add qspi register maps for memory map
defconfig: am437x_sk_evm: enable spi driver model
arch/arm/dts/am4372.dtsi | 5 +-
arch/arm/dts/am437x-sk-evm.dts | 2 +-
arch/arm/dts/dra7-evm.dts | 2 +-
arch/arm/dts/dra7.dtsi | 8 +-
arch/arm/dts/dra72-evm.dts | 2 +-
configs/am437x_sk_evm_defconfig | 3 +
configs/dra72_evm_defconfig | 2 +
configs/dra74_evm_defconfig | 2 +
drivers/core/device.c | 31 ++-
drivers/mtd/spi/sf-uclass.c | 7 +-
drivers/mtd/spi/sf_internal.h | 55 +++--
drivers/mtd/spi/sf_probe.c | 2 +-
drivers/mtd/spi/spi_flash.c | 185 +++++++++-----
drivers/spi/ich.c | 4 +-
drivers/spi/spi-uclass.c | 38 ++-
drivers/spi/ti_qspi.c | 524 ++++++++++++++++++++++++++++------------
include/configs/am43xx_evm.h | 2 +
include/configs/dra7xx_evm.h | 5 +
include/dm/device.h | 11 +
include/spi.h | 75 +++---
include/spi_flash.h | 2 -
21 files changed, 667 insertions(+), 300 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2015-12-30 10:31 [U-Boot] Pull request: u-boot-spi/next Jagan Teki
@ 2015-12-30 10:34 ` Jagan Teki
2015-12-31 17:54 ` Jagan Teki
2016-01-02 17:04 ` Tom Rini
2015-12-31 13:52 ` [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h Tom Rini
1 sibling, 2 replies; 11+ messages in thread
From: Jagan Teki @ 2015-12-30 10:34 UTC (permalink / raw)
To: u-boot
Tom,
Please note that subject shows u-boot-spi/next but it actually
u-boot-spi/master and of course PR shows the repo as master (not
next).
On 30 December 2015 at 16:01, Jagan Teki <jteki@openedev.com> wrote:
> Hi Tom,
>
> Please pull this PR.
>
> thanks!
> Jagan.
>
> The following changes since commit 312db9f75f50b339310474d72c8524cef2bd7931:
>
> armv7: omap-common: Rework SPL board_mmc_init() (2015-12-14 13:42:54 -0500)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-spi.git master
>
> for you to fetch changes up to 25aade812e40f2e869575199c64e35ebcdf5554b:
>
> defconfig: am437x_sk_evm: enable spi driver model (2015-12-29 13:27:46 +0530)
>
> ----------------------------------------------------------------
> Jagan Teki (24):
> sf: Get spi locally from spi_flash
> spi: make mode visible to both dm and non-dm
> spi: Use mode instead of op_mode_tx
> spi: Rename SPI_TX_BP|QPP to SPI_TX_BYTE|QUAD
> sf: Move spi_read_cmds_array locally
> sf: Rename spi_flash_set_* functions
> sf: Rename bank_end to bar_end in read_bar
> sf: Remove spi_flash_remove
> sf: Minor cleanup
> sf: Use BIT macro
> sf: Fix quad bit set for micron devices
> sf: Read back and check once spansion quad bit set
> sf: Read back and check once macronix quad bit set
> sf: Write quad bit along with read status
> spi: Remove SPI_OPM_RX_EXTN
> spi: Remove SPI_OPM_RX_DIO|QIOF
> spi: Rename SPI_OPM_RX_* to SPI_RX_*
> spi: Rename op_mode_rx to mode_rx
> spi: Move flags macro's to spi_slave{} members
> spi: Fix bit assignment with flags
> spi: Use BIT macro
> spi: Minor cleanup
> sf: Make IO modes at last in read modes
> spi: Add SPI_TX_DUAL mode
>
> Mugunthan V N (17):
> drivers: spi: ti_qspi: do not hard code chip select for memory map configuration
> drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion
> drivers: spi: ti_qspi: prepare driver for DM conversion
> dm: core: Add a new api to get indexed device address
> spi: Add support for dual and quad mode
> dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
> dts: dra7: add spi alias for qspi
> drivers: spi: ti_qspi: convert driver to adopt device driver model
> arm: dts: dra7: add qspi register maps for memory map and control module
> arm: dts: am437x-gp-evm: add spi-flash comaptible for flash
> arm: dts: dra7-evm: add spi-flash comaptible for flash
> arm: dts: dra72-evm: add spi-flash comaptible for flash
> defconfig: dra72_evm: enable spi driver model
> defconfig: dra74_evm: enable spi driver model
> am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
> arm: dts: am4372: add qspi register maps for memory map
> defconfig: am437x_sk_evm: enable spi driver model
>
> arch/arm/dts/am4372.dtsi | 5 +-
> arch/arm/dts/am437x-sk-evm.dts | 2 +-
> arch/arm/dts/dra7-evm.dts | 2 +-
> arch/arm/dts/dra7.dtsi | 8 +-
> arch/arm/dts/dra72-evm.dts | 2 +-
> configs/am437x_sk_evm_defconfig | 3 +
> configs/dra72_evm_defconfig | 2 +
> configs/dra74_evm_defconfig | 2 +
> drivers/core/device.c | 31 ++-
> drivers/mtd/spi/sf-uclass.c | 7 +-
> drivers/mtd/spi/sf_internal.h | 55 +++--
> drivers/mtd/spi/sf_probe.c | 2 +-
> drivers/mtd/spi/spi_flash.c | 185 +++++++++-----
> drivers/spi/ich.c | 4 +-
> drivers/spi/spi-uclass.c | 38 ++-
> drivers/spi/ti_qspi.c | 524 ++++++++++++++++++++++++++++------------
> include/configs/am43xx_evm.h | 2 +
> include/configs/dra7xx_evm.h | 5 +
> include/dm/device.h | 11 +
> include/spi.h | 75 +++---
> include/spi_flash.h | 2 -
> 21 files changed, 667 insertions(+), 300 deletions(-)
thanks!
--
Jagan.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h
2015-12-30 10:31 [U-Boot] Pull request: u-boot-spi/next Jagan Teki
2015-12-30 10:34 ` Jagan Teki
@ 2015-12-31 13:52 ` Tom Rini
2015-12-31 23:50 ` Tom Rini
1 sibling, 1 reply; 11+ messages in thread
From: Tom Rini @ 2015-12-31 13:52 UTC (permalink / raw)
To: u-boot
We only need this include file in board/samsung/common/misc.c, so move
it there.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
board/samsung/common/misc.c | 1 +
include/configs/trats2.h | 2 --
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c
index da0d4db1..a401e75 100644
--- a/board/samsung/common/misc.c
+++ b/board/samsung/common/misc.c
@@ -19,6 +19,7 @@
#include <linux/input.h>
#include <dm.h>
#include <power/pmic.h>
+#include <power/max77686_pmic.h>
#include <mmc.h>
DECLARE_GLOBAL_DATA_PTR;
diff --git a/include/configs/trats2.h b/include/configs/trats2.h
index f12a952..7861043 100644
--- a/include/configs/trats2.h
+++ b/include/configs/trats2.h
@@ -209,8 +209,6 @@ int get_soft_i2c_sda_pin(void);
/* Download menu - definitions for check keys */
#ifndef __ASSEMBLY__
-#include <power/max77686_pmic.h>
-
#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
#define KEY_PWR_STATUS_MASK (1 << 0)
--
1.7.9.5
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2015-12-30 10:34 ` Jagan Teki
@ 2015-12-31 17:54 ` Jagan Teki
2016-01-02 17:04 ` Tom Rini
1 sibling, 0 replies; 11+ messages in thread
From: Jagan Teki @ 2015-12-31 17:54 UTC (permalink / raw)
To: u-boot
On 30 December 2015 at 16:04, Jagan Teki <jteki@openedev.com> wrote:
> Tom,
Please pull this asap, in case if you miss.
>
> Please note that subject shows u-boot-spi/next but it actually
> u-boot-spi/master and of course PR shows the repo as master (not
> next).
>
> On 30 December 2015 at 16:01, Jagan Teki <jteki@openedev.com> wrote:
>> Hi Tom,
>>
>> Please pull this PR.
>>
>> thanks!
>> Jagan.
>>
>> The following changes since commit 312db9f75f50b339310474d72c8524cef2bd7931:
>>
>> armv7: omap-common: Rework SPL board_mmc_init() (2015-12-14 13:42:54 -0500)
>>
>> are available in the git repository at:
>>
>> git://git.denx.de/u-boot-spi.git master
>>
>> for you to fetch changes up to 25aade812e40f2e869575199c64e35ebcdf5554b:
>>
>> defconfig: am437x_sk_evm: enable spi driver model (2015-12-29 13:27:46 +0530)
>>
>> ----------------------------------------------------------------
>> Jagan Teki (24):
>> sf: Get spi locally from spi_flash
>> spi: make mode visible to both dm and non-dm
>> spi: Use mode instead of op_mode_tx
>> spi: Rename SPI_TX_BP|QPP to SPI_TX_BYTE|QUAD
>> sf: Move spi_read_cmds_array locally
>> sf: Rename spi_flash_set_* functions
>> sf: Rename bank_end to bar_end in read_bar
>> sf: Remove spi_flash_remove
>> sf: Minor cleanup
>> sf: Use BIT macro
>> sf: Fix quad bit set for micron devices
>> sf: Read back and check once spansion quad bit set
>> sf: Read back and check once macronix quad bit set
>> sf: Write quad bit along with read status
>> spi: Remove SPI_OPM_RX_EXTN
>> spi: Remove SPI_OPM_RX_DIO|QIOF
>> spi: Rename SPI_OPM_RX_* to SPI_RX_*
>> spi: Rename op_mode_rx to mode_rx
>> spi: Move flags macro's to spi_slave{} members
>> spi: Fix bit assignment with flags
>> spi: Use BIT macro
>> spi: Minor cleanup
>> sf: Make IO modes at last in read modes
>> spi: Add SPI_TX_DUAL mode
>>
>> Mugunthan V N (17):
>> drivers: spi: ti_qspi: do not hard code chip select for memory map configuration
>> drivers: spi:ti_qspi: change ti_qspi_slave to ti_qspi_priv for driver model conversion
>> drivers: spi: ti_qspi: prepare driver for DM conversion
>> dm: core: Add a new api to get indexed device address
>> spi: Add support for dual and quad mode
>> dra7xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
>> dts: dra7: add spi alias for qspi
>> drivers: spi: ti_qspi: convert driver to adopt device driver model
>> arm: dts: dra7: add qspi register maps for memory map and control module
>> arm: dts: am437x-gp-evm: add spi-flash comaptible for flash
>> arm: dts: dra7-evm: add spi-flash comaptible for flash
>> arm: dts: dra72-evm: add spi-flash comaptible for flash
>> defconfig: dra72_evm: enable spi driver model
>> defconfig: dra74_evm: enable spi driver model
>> am43xx_evm: qspi: do not define DM_SPI and DM_SPI_FLASH for spl
>> arm: dts: am4372: add qspi register maps for memory map
>> defconfig: am437x_sk_evm: enable spi driver model
>>
>> arch/arm/dts/am4372.dtsi | 5 +-
>> arch/arm/dts/am437x-sk-evm.dts | 2 +-
>> arch/arm/dts/dra7-evm.dts | 2 +-
>> arch/arm/dts/dra7.dtsi | 8 +-
>> arch/arm/dts/dra72-evm.dts | 2 +-
>> configs/am437x_sk_evm_defconfig | 3 +
>> configs/dra72_evm_defconfig | 2 +
>> configs/dra74_evm_defconfig | 2 +
>> drivers/core/device.c | 31 ++-
>> drivers/mtd/spi/sf-uclass.c | 7 +-
>> drivers/mtd/spi/sf_internal.h | 55 +++--
>> drivers/mtd/spi/sf_probe.c | 2 +-
>> drivers/mtd/spi/spi_flash.c | 185 +++++++++-----
>> drivers/spi/ich.c | 4 +-
>> drivers/spi/spi-uclass.c | 38 ++-
>> drivers/spi/ti_qspi.c | 524 ++++++++++++++++++++++++++++------------
>> include/configs/am43xx_evm.h | 2 +
>> include/configs/dra7xx_evm.h | 5 +
>> include/dm/device.h | 11 +
>> include/spi.h | 75 +++---
>> include/spi_flash.h | 2 -
>> 21 files changed, 667 insertions(+), 300 deletions(-)
>
> thanks!
> --
> Jagan.
--
Jagan.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h
2015-12-31 13:52 ` [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h Tom Rini
@ 2015-12-31 23:50 ` Tom Rini
0 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2015-12-31 23:50 UTC (permalink / raw)
To: u-boot
On Thu, Dec 31, 2015 at 08:52:18AM -0500, Tom Rini wrote:
> We only need this include file in board/samsung/common/misc.c, so move
> it there.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
This in turn breaks trats and s5pc210_universal, so it's not quite
there. I'll take another run at this tomorrow perhaps, but this does
block the spi PR.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151231/37773487/attachment.sig>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2015-12-30 10:34 ` Jagan Teki
2015-12-31 17:54 ` Jagan Teki
@ 2016-01-02 17:04 ` Tom Rini
2016-01-03 3:56 ` Jagan Teki
1 sibling, 1 reply; 11+ messages in thread
From: Tom Rini @ 2016-01-02 17:04 UTC (permalink / raw)
To: u-boot
On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
> Tom,
>
> Please note that subject shows u-boot-spi/next but it actually
> u-boot-spi/master and of course PR shows the repo as master (not
> next).
OK, what in here is a clear bugfix rather than new feature that we
should have taken in sooner? As-is this needs some rework on samsung
stuff to make trats, trats2 and s5pc210_universal work. Thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160102/024415ed/attachment.sig>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2016-01-02 17:04 ` Tom Rini
@ 2016-01-03 3:56 ` Jagan Teki
2016-01-03 14:44 ` Tom Rini
0 siblings, 1 reply; 11+ messages in thread
From: Jagan Teki @ 2016-01-03 3:56 UTC (permalink / raw)
To: u-boot
On 2 January 2016 at 22:34, Tom Rini <trini@konsulko.com> wrote:
> On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
>
>> Tom,
>>
>> Please note that subject shows u-boot-spi/next but it actually
>> u-boot-spi/master and of course PR shows the repo as master (not
>> next).
>
> OK, what in here is a clear bugfix rather than new feature that we
> should have taken in sooner? As-is this needs some rework on samsung
> stuff to make trats, trats2 and s5pc210_universal work. Thanks!
How come these sf and ti patches are blocking these samsung boards to
work? few of these were bug fixes and others were features (ti
patches) but those initiated in last MW.
thanks!
--
Jagan.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2016-01-03 3:56 ` Jagan Teki
@ 2016-01-03 14:44 ` Tom Rini
2016-01-03 15:40 ` Jagan Teki
0 siblings, 1 reply; 11+ messages in thread
From: Tom Rini @ 2016-01-03 14:44 UTC (permalink / raw)
To: u-boot
On Sun, Jan 03, 2016 at 09:26:38AM +0530, Jagan Teki wrote:
> On 2 January 2016 at 22:34, Tom Rini <trini@konsulko.com> wrote:
> > On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
> >
> >> Tom,
> >>
> >> Please note that subject shows u-boot-spi/next but it actually
> >> u-boot-spi/master and of course PR shows the repo as master (not
> >> next).
> >
> > OK, what in here is a clear bugfix rather than new feature that we
> > should have taken in sooner? As-is this needs some rework on samsung
> > stuff to make trats, trats2 and s5pc210_universal work. Thanks!
>
> How come these sf and ti patches are blocking these samsung boards to
> work? few of these were bug fixes and others were features (ti
> patches) but those initiated in last MW.
The patch to use BIT() in spi.h causes undefined references on trats2,
hence the first patch I posted in reply to the PR. This however broke
trats/s5pc210_universal.
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160103/a7ea8bc4/attachment.sig>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2016-01-03 14:44 ` Tom Rini
@ 2016-01-03 15:40 ` Jagan Teki
2016-01-03 15:56 ` Tom Rini
0 siblings, 1 reply; 11+ messages in thread
From: Jagan Teki @ 2016-01-03 15:40 UTC (permalink / raw)
To: u-boot
On 3 January 2016 at 20:14, Tom Rini <trini@konsulko.com> wrote:
> On Sun, Jan 03, 2016 at 09:26:38AM +0530, Jagan Teki wrote:
>> On 2 January 2016 at 22:34, Tom Rini <trini@konsulko.com> wrote:
>> > On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
>> >
>> >> Tom,
>> >>
>> >> Please note that subject shows u-boot-spi/next but it actually
>> >> u-boot-spi/master and of course PR shows the repo as master (not
>> >> next).
>> >
>> > OK, what in here is a clear bugfix rather than new feature that we
>> > should have taken in sooner? As-is this needs some rework on samsung
>> > stuff to make trats, trats2 and s5pc210_universal work. Thanks!
>>
>> How come these sf and ti patches are blocking these samsung boards to
>> work? few of these were bug fixes and others were features (ti
>> patches) but those initiated in last MW.
>
> The patch to use BIT() in spi.h causes undefined references on trats2,
> hence the first patch I posted in reply to the PR. This however broke
> trats/s5pc210_universal.
Build looks fine for me [1]
[1] http://paste.ubuntu.com/14387171/
--
Jagan.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2016-01-03 15:40 ` Jagan Teki
@ 2016-01-03 15:56 ` Tom Rini
2016-01-06 9:24 ` Jagan Teki
0 siblings, 1 reply; 11+ messages in thread
From: Tom Rini @ 2016-01-03 15:56 UTC (permalink / raw)
To: u-boot
On Sun, Jan 03, 2016 at 09:10:14PM +0530, Jagan Teki wrote:
> On 3 January 2016 at 20:14, Tom Rini <trini@konsulko.com> wrote:
> > On Sun, Jan 03, 2016 at 09:26:38AM +0530, Jagan Teki wrote:
> >> On 2 January 2016 at 22:34, Tom Rini <trini@konsulko.com> wrote:
> >> > On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
> >> >
> >> >> Tom,
> >> >>
> >> >> Please note that subject shows u-boot-spi/next but it actually
> >> >> u-boot-spi/master and of course PR shows the repo as master (not
> >> >> next).
> >> >
> >> > OK, what in here is a clear bugfix rather than new feature that we
> >> > should have taken in sooner? As-is this needs some rework on samsung
> >> > stuff to make trats, trats2 and s5pc210_universal work. Thanks!
> >>
> >> How come these sf and ti patches are blocking these samsung boards to
> >> work? few of these were bug fixes and others were features (ti
> >> patches) but those initiated in last MW.
> >
> > The patch to use BIT() in spi.h causes undefined references on trats2,
> > hence the first patch I posted in reply to the PR. This however broke
> > trats/s5pc210_universal.
>
> Build looks fine for me [1]
>
> [1] http://paste.ubuntu.com/14387171/
Yes, that and trats are fine with your series, trats2 is not. My first
pass at fixing trats2 broke trats/s5p..
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160103/94e50d7d/attachment.sig>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] Pull request: u-boot-spi/next
2016-01-03 15:56 ` Tom Rini
@ 2016-01-06 9:24 ` Jagan Teki
0 siblings, 0 replies; 11+ messages in thread
From: Jagan Teki @ 2016-01-06 9:24 UTC (permalink / raw)
To: u-boot
On 3 January 2016 at 21:26, Tom Rini <trini@konsulko.com> wrote:
> On Sun, Jan 03, 2016 at 09:10:14PM +0530, Jagan Teki wrote:
>> On 3 January 2016 at 20:14, Tom Rini <trini@konsulko.com> wrote:
>> > On Sun, Jan 03, 2016 at 09:26:38AM +0530, Jagan Teki wrote:
>> >> On 2 January 2016 at 22:34, Tom Rini <trini@konsulko.com> wrote:
>> >> > On Wed, Dec 30, 2015 at 04:04:23PM +0530, Jagan Teki wrote:
>> >> >
>> >> >> Tom,
>> >> >>
>> >> >> Please note that subject shows u-boot-spi/next but it actually
>> >> >> u-boot-spi/master and of course PR shows the repo as master (not
>> >> >> next).
>> >> >
>> >> > OK, what in here is a clear bugfix rather than new feature that we
>> >> > should have taken in sooner? As-is this needs some rework on samsung
>> >> > stuff to make trats, trats2 and s5pc210_universal work. Thanks!
>> >>
>> >> How come these sf and ti patches are blocking these samsung boards to
>> >> work? few of these were bug fixes and others were features (ti
>> >> patches) but those initiated in last MW.
>> >
>> > The patch to use BIT() in spi.h causes undefined references on trats2,
>> > hence the first patch I posted in reply to the PR. This however broke
>> > trats/s5pc210_universal.
>>
>> Build looks fine for me [1]
>>
>> [1] http://paste.ubuntu.com/14387171/
>
> Yes, that and trats are fine with your series, trats2 is not. My first
> pass at fixing trats2 broke trats/s5p..
The patch "power: pmic.h: Drop include <spi.h>" will fix trats2.
--
Jagan.
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-01-06 9:24 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-30 10:31 [U-Boot] Pull request: u-boot-spi/next Jagan Teki
2015-12-30 10:34 ` Jagan Teki
2015-12-31 17:54 ` Jagan Teki
2016-01-02 17:04 ` Tom Rini
2016-01-03 3:56 ` Jagan Teki
2016-01-03 14:44 ` Tom Rini
2016-01-03 15:40 ` Jagan Teki
2016-01-03 15:56 ` Tom Rini
2016-01-06 9:24 ` Jagan Teki
2015-12-31 13:52 ` [U-Boot] [PATCH] trats2: Move include of power/max77686_pmic.h Tom Rini
2015-12-31 23:50 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox