public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [GIT PULL] Microblaze changes
@ 2016-01-14  8:51 Michal Simek
  2016-01-14 13:17 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2016-01-14  8:51 UTC (permalink / raw)
  To: u-boot

Hi Tom,

here are microblaze patches for moving stuff to DM. This is the patch
series which we postpone to next release. Buildman doesn't show any
problems for mb, zynq_zc702 and zynqmp.

Thanks,
Michal

The following changes since commit d29892ba854f40980b84f86566cd0c2308c66afe:

  part_dos.c: Don't wrap to negative after 2G sectors (2016-01-13
16:33:20 -0500)

are available in the git repository at:

  git://www.denx.de/git/u-boot-microblaze.git mb

for you to fetch changes up to 8283903d4df0685af98a45d323f880ce07c60cec:

  microblaze: Fix board_init calling sequence (2016-01-14 09:35:04 +0100)

----------------------------------------------------------------
Michal Simek (45):
      microblaze: Remove CONSOLE_ARG
      microblaze: Move baudrate setting out driver selection
      serial: uartlite: Move driver to DM
      serial: uartlite: Add support for debug console
      serial: uartlite: Add uartlite to Kconfig
      microblaze: Enable uart16550 DM by default
      microblaze: Do not print eth device when DM_ETH is enabled
      microblaze: Enable PHYLIB via Kconfig
      microblaze: Remove unused I2C macros
      microblaze: Wire-up debug_uart in asm
      microblaze: Enable MICREL_KSZ9021
      net: axi_emac: Fix parentheses around operand !
      net: axi_emac: Show phy address instead of register content
      net: axi_emac: Pass directly pointer to register space
      net: axi_emac: Put iobase to private structure
      net: axi_emac: Pass private structure to phyread/phywrite
      net: axi_emac: Pass private structure where possible
      net: axi_emac: Move driver to DM
      net: axi_emac: Enable access to MDIO in probe
      net: axi_emac: Split recv from free_pkt
      net: axi_emac: Rename start, stop, write_hwaddr functions
      net: Add axi emac to Kconfig
      net: emaclite: Remove ancient OF probe function
      net: emaclite: Add MDIO support to driver
      net: emaclite: Convert MDIO to use register offset
      net: emaclite: Use indirect register access for tx_ping/pong
      net: emaclite: Use indirect register access for rx_ping/pong
      net: emaclite: Use indirect register access for TX reset
      net: emaclite: Fix logic around available TX buffers
      net: emaclite: Remove XEL_TSR_XMIT_ACTIVE_MASK flag
      net: emaclite: Use indirect reg access in send
      net: emaclite: Use indirect access in emaclite_recv
      net: emaclite: Move driver to DM
      net: emaclite: Rename start and stop functions
      net: emaclite: Let core to handle received packet
      net: emaclite: Move emaclite to Kconfig
      microblaze: Enable axi emac via Kconfig
      microblaze: Move eth configuration to Kconfig
      microblaze: Remove systemace from board file
      microblaze: Remove CONFIG_FIT from board file
      microblaze: Move CONFIG_NETCONSOLE to Kconfig
      microblaze: Remove empty file - cpu.c
      microblaze: Read information about RAM from DT
      microblaze: Enable HUSH via Kconfig
      microblaze: Fix board_init calling sequence

 arch/microblaze/Kconfig                              |   1 +
 arch/microblaze/cpu/Makefile                         |   2 +-
 arch/microblaze/cpu/cpu.c                            |   9 --
 arch/microblaze/cpu/start.S                          |   4 +
 board/xilinx/microblaze-generic/microblaze-generic.c |  39 +------
 board/xilinx/microblaze-generic/xparameters.h        |  21 ----
 board/xilinx/zynq/board.c                            |  24 ----
 common/cmd_bdinfo.c                                  |   2 +-
 configs/microblaze-generic_defconfig                 |  14 +++
 doc/device-tree-bindings/serial/xilinx_uartlite.txt  |  13 +++
 doc/driver-model/serial-howto.txt                    |   1 -
 drivers/net/Kconfig                                  |  16 +++
 drivers/net/xilinx_axi_emac.c                        | 280
++++++++++++++++++++++++++++-----------------
 drivers/net/xilinx_emaclite.c                        | 610
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------
 drivers/serial/Kconfig                               |  14 +++
 drivers/serial/serial_xuartlite.c                    | 194
++++++++++++++-----------------
 include/configs/microblaze-generic.h                 |  74 +-----------
 include/netdev.h                                     |   5 -
 18 files changed, 757 insertions(+), 566 deletions(-)
 delete mode 100644 arch/microblaze/cpu/cpu.c
 create mode 100644 doc/device-tree-bindings/serial/xilinx_uartlite.txt


-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160114/dc53bc4f/attachment.sig>

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [U-Boot] [GIT PULL] Microblaze changes
@ 2015-11-19 12:21 Michal Simek
  2015-11-19 22:07 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2015-11-19 12:21 UTC (permalink / raw)
  To: u-boot

Hi,

please pull these patches to your tree. I have added there 3 dm patches
which were Acked-by Simon which fixing manual relocation which is used
by Microblaze (others are probably without DM now).

Thanks,
Michal


The following changes since commit 736d1746fb7b8f7cd70657a4a72db2b6bd8de40e:

  itest: add missing break statements to evalexp() (2015-11-18 15:29:00
-0500)

are available in the git repository at:

  git://www.denx.de/git/u-boot-microblaze.git master

for you to fetch changes up to 2588f2ddfd60ac617c05def14e9a92fd329721fe:

  dm: sf: Add support for all targets which requires MANUAL_RELOC
(2015-11-19 13:10:32 +0100)

----------------------------------------------------------------
Michal Simek (3):
      dm: spi: Add support for all targets which requires MANUAL_RELOC
      dm: core: Add missing entries for manual relocation
      dm: sf: Add support for all targets which requires MANUAL_RELOC

Nathan Rossi (2):
      microblaze: Fix style issues in header files
      microblaze: Fix C99/gnu99 compatiblity for inline functions

 arch/microblaze/include/asm/bitops.h | 63
+++++++++++++++++++++------------------------------------------
 arch/microblaze/include/asm/system.h |  2 +-
 drivers/core/root.c                  |  8 ++++++++
 drivers/mtd/spi/sf-uclass.c          | 23 +++++++++++++++++++++++
 drivers/spi/spi-uclass.c             | 20 ++++++++++++++++++++
 5 files changed, 73 insertions(+), 43 deletions(-)


-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151119/43fb611e/attachment.sig>

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [U-Boot] [GIT PULL] Microblaze changes
@ 2015-04-29  8:29 Michal Simek
  2015-04-29 14:28 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2015-04-29  8:29 UTC (permalink / raw)
  To: u-boot

Hi Tom,

I have just this one small patch. Please apply.

Thanks,
Michal

The following changes since commit cc555bd4f40a652471df4a3621d45ee57df0ca11:

  Merge branch 'master' of git://git.denx.de/u-boot-spi (2015-04-28
07:28:43 -0400)

are available in the git repository at:

  git://www.denx.de/git/u-boot-microblaze.git

for you to fetch changes up to 127e8a5e4361843dc43cf2f523c66071bbbb9c90:

  microblaze: Fix EMAC Lite initialization (2015-04-29 10:22:25 +0200)

----------------------------------------------------------------
Nathan Rossi (1):
      microblaze: Fix EMAC Lite initialization

 board/xilinx/microblaze-generic/microblaze-generic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 24+ messages in thread
[parent not found: <54D8C41F.90508@monstr.eu>]
* [U-Boot] [GIT PULL] Microblaze changes
@ 2015-01-21  9:34 Michal Simek
  2015-01-23 21:56 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2015-01-21  9:34 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull these two microblaze fixes to your tree.

Thanks,
Michal

The following changes since commit 768f6096f9c389b5ed36bee2957bee16b085fc4a:

  Merge git://git.denx.de/u-boot-arc (2015-01-20 16:41:11 -0500)

are available in the git repository at:


  git://www.denx.de/git/u-boot-microblaze.git next

for you to fetch changes up to da931af1b5eaae36dd9e3fb2eaf6b62201ed3a43:

  microblaze: Support stack protection feature (2015-01-21 10:33:07 +0100)

----------------------------------------------------------------
Michal Simek (2):
      microblaze: Enable hardware exception by default
      microblaze: Support stack protection feature

 arch/microblaze/cpu/start.S | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150121/c1b36585/attachment.pgp>

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [U-Boot] [GIT PULL] Microblaze changes
@ 2014-05-06 11:35 Michal Simek
  2014-05-06 20:54 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2014-05-06 11:35 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull this one microblaze patch which I have in my queue.

Thanks,
Michal

The following changes since commit 52fded7b94d98c73a824e4a9d90596a33a1cbb8a:

  Merge branch 'next' of git://git.denx.de/u-boot-sh (2014-05-02 11:48:07 -0400)

are available in the git repository at:


  git://www.denx.de/git/u-boot-microblaze.git master

for you to fetch changes up to d1d37b5cab119096bb60c686eff7ea39cfebed25:

  microblaze: Wire up OF support for emaclite (2014-05-06 13:32:30 +0200)

----------------------------------------------------------------
Stephan Linz (1):
      microblaze: Wire up OF support for emaclite

 include/configs/microblaze-generic.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [U-Boot] [GIT PULL] microblaze changes
@ 2014-02-04 15:41 Michal Simek
  2014-02-04 22:03 ` Tom Rini
  0 siblings, 1 reply; 24+ messages in thread
From: Michal Simek @ 2014-02-04 15:41 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull these Microblaze changes to your tree.

Thanks,
Michal

The following changes since commit 07e2822d158940a0e8ba45b6ab0344ffa1011a07:

  board: nios2: Check if flash is configured before calling early_flash_cmd_reset() (2014-01-29 16:44:18 -0500)

are available in the git repository at:

  git://www.denx.de/git/u-boot-microblaze.git master

for you to fetch changes up to 9d24274509cdd463992dc1fb1a2820d6a4b6d21d:

  microblaze: Add SPL support (2014-02-04 16:39:50 +0100)

----------------------------------------------------------------
Michal Simek (4):
      microblaze: Show u-boot banner
      microblaze: Report priviledged or stack protection exception
      microblaze: Enable buffer write for NOR flashes
      microblaze: Add SPL support

 arch/microblaze/cpu/Makefile         |  1 +
 arch/microblaze/cpu/exception.c      |  3 +++
 arch/microblaze/cpu/spl.c            | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/microblaze/cpu/start.S          | 12 ++++++++++++
 arch/microblaze/cpu/timer.c          |  8 +++++++-
 arch/microblaze/cpu/u-boot-spl.lds   | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/microblaze/include/asm/spl.h    | 16 ++++++++++++++++
 arch/microblaze/include/asm/u-boot.h |  1 +
 arch/microblaze/lib/board.c          | 18 +++++++++++++++++-
 include/configs/microblaze-generic.h | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 10 files changed, 231 insertions(+), 3 deletions(-)
 create mode 100644 arch/microblaze/cpu/spl.c
 create mode 100644 arch/microblaze/cpu/u-boot-spl.lds
 create mode 100644 arch/microblaze/include/asm/spl.h

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 263 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140204/3f30c668/attachment.pgp>

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2016-01-25 15:16 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14  8:51 [U-Boot] [GIT PULL] Microblaze changes Michal Simek
2016-01-14 13:17 ` Tom Rini
2016-01-14 13:50   ` Michal Simek
2016-01-14 20:24     ` Ricardo Ribalda Delgado
2016-01-15  7:08       ` Michal Simek
2016-01-20 13:23         ` Michal Simek
2016-01-20 13:35           ` Ricardo Ribalda Delgado
2016-01-22 14:53             ` Ricardo Ribalda Delgado
2016-01-22 18:23               ` Michal Simek
2016-01-22 18:25                 ` Michal Simek
2016-01-22 18:34                 ` Ricardo Ribalda Delgado
2016-01-25  9:24                   ` Michal Simek
2016-01-25 15:16                     ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2015-11-19 12:21 Michal Simek
2015-11-19 22:07 ` Tom Rini
2015-04-29  8:29 Michal Simek
2015-04-29 14:28 ` Tom Rini
     [not found] <54D8C41F.90508@monstr.eu>
2015-02-09 20:27 ` [U-Boot] [GIT PULL] microblaze changes Tom Rini
2015-01-21  9:34 [U-Boot] [GIT PULL] Microblaze changes Michal Simek
2015-01-23 21:56 ` Tom Rini
2014-05-06 11:35 Michal Simek
2014-05-06 20:54 ` Tom Rini
2014-02-04 15:41 [U-Boot] [GIT PULL] microblaze changes Michal Simek
2014-02-04 22:03 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox