All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] media: atomisp: Changes for 6.3-1
@ 2023-01-30 10:40 Hans de Goede
  0 siblings, 0 replies; only message in thread
From: Hans de Goede @ 2023-01-30 10:40 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Linux Media Mailing List
  Cc: Sakari Ailus, Andy Shevchenko, linux-staging

Hi Mauro,

Here are all my atomisp changes for 6.3 + a couple of atomisp patches
from others.

These patches have been posted on the list and I have addressed
all review remarks to these patches.

Highlights:
-Move atomisp.ko power-magagement to its own pm-domain to silence all
 the PCI subsystem suspend/resume error messages
-Make the driver less chatty / silence debug + false-positive errors output
-Whole bunch of other bugfixes
-ov2680 sensor driver:
 -Significant rework / modernization
 -Move to runtime-pm
 -Drop custom atomisp_gmin_platform regulator/clk poking code,
  replacing it with using ACPI to do the pm for us!
-Initial set of patches to make the ov2722 driver work

Regards,

Hans


The following changes since commit 7120d6bfd6d0b26b49958f429701996f2d3e2c2a:

  media: tm6000: remove deprecated driver (2023-01-22 09:57:19 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux.git tags/media-atomisp-6.3-1

for you to fetch changes up to c69d6df6993e2b4ad66acf7a85dbf8c7f5734c3c:

  media: atomisp: pci: sh_css: Inline single invocation of macro STATS_ENABLED() (2023-01-30 10:19:31 +0100)

----------------------------------------------------------------
Highlights:
-Move atomisp.ko power-magagement to its own pm-domain to silence all
 the PCI subsystem suspend/resume error messages
-Make the driver less chatty / silence debug + false-positive errors output
-Whole bunch of other bugfixes
-ov2680 sensor driver:
 -Significant rework / modernization
 -Move to runtime-pm
 -Drop custom atomisp_gmin_platform regulator/clk poking code,
  replacing it with using ACPI to do the pm for us
-Initial set of patches to make the ov2722 driver work

----------------------------------------------------------------
Arnd Bergmann (1):
      media: atomisp: fix videobuf2 Kconfig depenendency

Brent Pappas (3):
      media: atomisp: pci: Replace bytes macros with functions
      media: atomisp: pci: hive_isp_css_common: host: vmem: Replace SUBWORD macros with functions
      media: atomisp: pci: sh_css: Inline single invocation of macro STATS_ENABLED()

Hans Verkuil (1):
      media: atomisp: use vb2_start_streaming_called()

Hans de Goede (55):
      media: atomisp: Propagate set_fmt() errors in queue_setup()
      media: atomisp: Only set default_run_mode on first open of a stream/asd
      media: atomisp: Fix WARN() when the vb2 start_streaming callback fails
      media: atomisp: Check buffer index is in range inside atomisp_qbuf_wrapper()
      media: atomisp: Fix regulator registers on BYT devices with CRC PMIC
      media: atomisp: Remove atomisp_sw_contex struct
      media: atomisp: Move power-management over to a custom pm-domain
      media: atomisp: Silence "isys dma store at addr, val" debug messages
      media: atomisp: Remove non working doorbell check from punit_ddr_dvfs_enable()
      media: atomisp: Remove useless msleep(10) before power-on on BYT
      media: atomisp: Remove custom ATOMISP_IOC_ISP_MAKERNOTE ioctl
      media: atomisp: Remove custom ATOMISP_IOC_G_SENSOR_MODE_DATA ioctl
      media: atomisp: Remove V4L2_CID_BIN_FACTOR_HORZ/_VERT
      media: atomisp: Remove no longer used binning info from sensor resolution info
      media: atomisp: Remove deferred firmware loading support
      media: atomisp: Drop atomisp_init_pipe()
      media: atomisp: Remove unnecessary memset(foo, 0, sizeof(foo)) calls
      media: atomisp: Do not turn off sensor when the atomisp-sub-dev does not own it
      media: atomisp: Allow sensor drivers without a s_power callback
      media: atomisp: Remove atomisp_gmin_find_subdev()
      media: atomisp: Add atomisp_register_sensor_no_gmin() helper
      media: atomisp: Drop ffmt local var from atomisp_set_fmt()
      media: atomisp: Stop overriding padding w/h to 12 on BYT
      media: atomisp: Put sensor ACPI devices in D3 before disable ACPI power-resources
      media: atomisp: Remove isp_subdev_link_setup()
      media: atomisp: Remove csi2_link_setup()
      media: atomisp: Properly initialize function field of media-entity links
      media: Add ov_16bit_addr_reg_helpers.h
      media: atomisp: ov2680: Use the new ov_16bit_addr_reg_helpers.h
      media: atomisp: ov2680: Rework flip ctrls
      media: atomisp: ov2680: Drop custom ATOMISP_IOC_S_EXPOSURE support
      media: atomisp: ov2680: Add exposure and gain controls
      media: atomisp: ov2680: Add test pattern control
      media: atomisp: ov2680: Fix window settings and enable window for all resolutions
      media: atomisp: ov2680: Make setting the modes algorithm based
      media: atomisp: ov2680: Use defines for fps, lines-per-frame and skip-frames
      media: atomisp: ov2680: Drop unused res member from struct ov2680_device
      media: atomisp: ov2680: Fix ov2680_enum_frame_interval()
      media: atomisp: ov2680: Drop v4l2_find_nearest_size() call from set_fmt()
      media: atomisp: ov2680: Drop struct ov2680_resolution / ov2680_res_preview
      media: atomisp: ov2680: Fix frame_size list
      media: atomisp: ov2680: Remove unused data-types and defines from ov2680.h
      media: atomisp: ov2680: Drop MAX_FMTS define
      media: atomisp: ov2680: Consistently indent define values
      media: atomisp: ov2680: Cleanup includes
      media: atomisp: ov2680: Delay power-on till streaming is started
      media: atomisp: ov2680: Add runtime-pm support
      media: atomisp: ov2680: s/dev/sensor/
      media: atomisp: ov2680: Add dev local variable to probe()
      media: atomisp: ov2680: Use devm_kzalloc() for sensor data struct
      media: atomisp: ov2680: Switch over to ACPI powermanagement
      media: atomisp: ov2722: Call atomisp_gmin_remove_subdev() on probe failure
      media: atomisp: ov2722: Fix GPIO1 polarity
      media: atomisp: ov2722: Don't take the input_lock for try_fmt calls.
      media: atomisp: ov2722: Power on sensor from set_fmt() callback

 drivers/staging/media/atomisp/Kconfig              |    2 +-
 drivers/staging/media/atomisp/i2c/atomisp-gc0310.c |  249 ----
 drivers/staging/media/atomisp/i2c/atomisp-gc2235.c |  176 ---
 .../staging/media/atomisp/i2c/atomisp-mt9m114.c    |  206 ----
 drivers/staging/media/atomisp/i2c/atomisp-ov2680.c | 1280 ++++++--------------
 drivers/staging/media/atomisp/i2c/atomisp-ov2722.c |  195 +--
 drivers/staging/media/atomisp/i2c/gc0310.h         |   10 -
 drivers/staging/media/atomisp/i2c/gc2235.h         |   31 -
 drivers/staging/media/atomisp/i2c/mt9m114.h        |   15 -
 drivers/staging/media/atomisp/i2c/ov2680.h         |  836 ++-----------
 drivers/staging/media/atomisp/i2c/ov2722.h         |   36 +-
 .../media/atomisp/i2c/ov5693/atomisp-ov5693.c      |  195 ---
 drivers/staging/media/atomisp/i2c/ov5693/ov5693.h  |   61 -
 .../staging/media/atomisp/include/linux/atomisp.h  |   50 -
 .../atomisp/include/linux/atomisp_gmin_platform.h  |    2 -
 .../media/atomisp/include/linux/atomisp_platform.h |   11 +-
 drivers/staging/media/atomisp/notes.txt            |    6 -
 drivers/staging/media/atomisp/pci/atomisp_cmd.c    |   90 +-
 drivers/staging/media/atomisp/pci/atomisp_cmd.h    |    9 +-
 drivers/staging/media/atomisp/pci/atomisp_csi2.c   |   41 +-
 drivers/staging/media/atomisp/pci/atomisp_csi2.h   |    5 -
 drivers/staging/media/atomisp/pci/atomisp_fops.c   |   89 +-
 drivers/staging/media/atomisp/pci/atomisp_fops.h   |    3 +-
 .../media/atomisp/pci/atomisp_gmin_platform.c      |  120 +-
 .../staging/media/atomisp/pci/atomisp_internal.h   |    7 +-
 drivers/staging/media/atomisp/pci/atomisp_ioctl.c  |   60 +-
 drivers/staging/media/atomisp/pci/atomisp_subdev.c |  171 +--
 drivers/staging/media/atomisp/pci/atomisp_subdev.h |   13 -
 drivers/staging/media/atomisp/pci/atomisp_tpg.c    |    2 +-
 drivers/staging/media/atomisp/pci/atomisp_v4l2.c   |  165 +--
 .../pci/css_2401_system/host/isys_dma_private.h    |    2 -
 .../atomisp/pci/hive_isp_css_common/host/vmem.c    |   20 +-
 drivers/staging/media/atomisp/pci/sh_css.c         |    7 +-
 drivers/staging/media/atomisp/pci/sh_css_params.c  |   38 +-
 include/media/ov_16bit_addr_reg_helpers.h          |   92 ++
 35 files changed, 871 insertions(+), 3424 deletions(-)
 create mode 100644 include/media/ov_16bit_addr_reg_helpers.h


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-30 10:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-30 10:40 [GIT PULL] media: atomisp: Changes for 6.3-1 Hans de Goede

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.