mbox series

[0/2] microblaze: Fix timer and interrupt code

Message ID cover.1654684731.git.michal.simek@amd.com
Headers show
Series microblaze: Fix timer and interrupt code | expand

Message

Michal Simek June 8, 2022, 10:38 a.m. UTC
Hi,

this series is moving timer to generic drivers/timer/ location and it is
removing unused interrupt code in architecture.

note: This patchset is based on rela and cache series.

Thanks,
Michal


Michal Simek (2):
  microblaze: Convert axi timer to DM driver
  microblaze: Remove interrupt handler

 MAINTAINERS                                   |   1 +
 arch/Kconfig                                  |   6 +-
 arch/microblaze/cpu/Makefile                  |   2 +-
 arch/microblaze/cpu/interrupts.c              | 182 +-----------------
 arch/microblaze/cpu/timer.c                   | 123 ------------
 arch/microblaze/include/asm/microblaze_intc.h |  37 ----
 .../microblaze/include/asm/microblaze_timer.h |  26 ---
 drivers/timer/Kconfig                         |   8 +
 drivers/timer/Makefile                        |   1 +
 drivers/timer/xilinx-timer.c                  |  82 ++++++++
 10 files changed, 99 insertions(+), 369 deletions(-)
 delete mode 100644 arch/microblaze/cpu/timer.c
 delete mode 100644 arch/microblaze/include/asm/microblaze_intc.h
 delete mode 100644 arch/microblaze/include/asm/microblaze_timer.h
 create mode 100644 drivers/timer/xilinx-timer.c

Comments

Michal Simek June 24, 2022, 12:16 p.m. UTC | #1
st 8. 6. 2022 v 12:39 odesílatel Michal Simek <monstr@monstr.eu> napsal:
>
> Hi,
>
> this series is moving timer to generic drivers/timer/ location and it is
> removing unused interrupt code in architecture.
>
> note: This patchset is based on rela and cache series.
>
> Thanks,
> Michal
>
>
> Michal Simek (2):
>   microblaze: Convert axi timer to DM driver
>   microblaze: Remove interrupt handler
>
>  MAINTAINERS                                   |   1 +
>  arch/Kconfig                                  |   6 +-
>  arch/microblaze/cpu/Makefile                  |   2 +-
>  arch/microblaze/cpu/interrupts.c              | 182 +-----------------
>  arch/microblaze/cpu/timer.c                   | 123 ------------
>  arch/microblaze/include/asm/microblaze_intc.h |  37 ----
>  .../microblaze/include/asm/microblaze_timer.h |  26 ---
>  drivers/timer/Kconfig                         |   8 +
>  drivers/timer/Makefile                        |   1 +
>  drivers/timer/xilinx-timer.c                  |  82 ++++++++
>  10 files changed, 99 insertions(+), 369 deletions(-)
>  delete mode 100644 arch/microblaze/cpu/timer.c
>  delete mode 100644 arch/microblaze/include/asm/microblaze_intc.h
>  delete mode 100644 arch/microblaze/include/asm/microblaze_timer.h
>  create mode 100644 drivers/timer/xilinx-timer.c
>
> --
> 2.36.1
>

Applied.
M