1. 05 9月, 2021 7 次提交
  2. 04 9月, 2021 3 次提交
  3. 02 9月, 2021 6 次提交
    • B
      2cb32607
    • P
      ata: ahci-pci: Add new option CONFIG_SPL_AHCI_PCI · 73059529
      Pali Rohár 提交于
      This new option allows to disable ahci-pci driver in SPL. Disabling it is
      needed when SPL_PCI is not enabled as ahci-pci depends on PCI.
      
      This change fixes following compile error when CONFIG_SPL_SATA_SUPPORT is
      enabled and SPL_PCI is disabled.
      
          LD      spl/u-boot-spl
        arm-linux-gnueabihf-ld.bfd: drivers/ata/ahci.o: in function `ahci_probe_scsi_pci':
        drivers/ata/ahci.c:1205: undefined reference to `dm_pci_map_bar'
        arm-linux-gnueabihf-ld.bfd: drivers/ata/ahci.c:1215: undefined reference to `dm_pci_read_config16'
        arm-linux-gnueabihf-ld.bfd: drivers/ata/ahci.c:1216: undefined reference to `dm_pci_read_config16'
        arm-linux-gnueabihf-ld.bfd: drivers/ata/ahci.c:1220: undefined reference to `dm_pci_map_bar'
        make[1]: *** [scripts/Makefile.spl:512: spl/u-boot-spl] Error 1
        make: *** [Makefile:1977: spl/u-boot-spl] Error 2
      
          LD      spl/u-boot-spl
        arm-linux-gnueabihf-ld.bfd: drivers/ata/ahci-pci.o: in function `ahci_pci_probe':
        drivers/ata/ahci-pci.c:21: undefined reference to `ahci_probe_scsi_pci'
        make[1]: *** [scripts/Makefile.spl:512: spl/u-boot-spl] Error 1
        make: *** [Makefile:1977: spl/u-boot-spl] Error 2
      Signed-off-by: NPali Rohár <pali@kernel.org>
      Reviewed-by: NStefan Roese <sr@denx.de>
      73059529
    • P
      ata: ahci-pci: Fix dependency on DM_PCI · 20aa320a
      Pali Rohár 提交于
      File drivers/ata/ahci-pci.c calls function ahci_probe_scsi_pci() which is
      compiled only when DM_PCI is enabled. So add missing dependency into
      Kconfig.
      Signed-off-by: NPali Rohár <pali@kernel.org>
      Reviewed-by: NStefan Roese <sr@denx.de>
      20aa320a
    • C
      rtc: ds1307: Fix incorrect clock reset for DS13xx · 223c4490
      Callum Sinclair 提交于
      The ds1307 driver also supports the DS1339 and DS1340.
      However, in ds1307_rtc_reset the register writes assume that the chip
      is a DS1307. This is evident in the writing of bits SQWE, RS1, RS0 to
      the control register. While this applies correctly to the DS1307, on a
      DS1340 the control register doesn't contain those bits (instead, the
      register is used for clock calibration). By writing these bits the
      clock calibration will be changed and the chip can become
      non-functional after a reset call.
      Signed-off-by: NCallum Sinclair <callum.sinclair@alliedtelesis.co.nz>
      223c4490
    • C
      crypto: hash: Add software hash DM driver · e5d870fa
      Chia-Wei Wang 提交于
      Add purely software-implmented drivers to support multiple
      hash operations including CRC, MD5, and SHA family.
      
      This driver is based on the new hash uclass.
      Signed-off-by: NChia-Wei Wang <chiawei_wang@aspeedtech.com>
      e5d870fa
    • C
      dm: hash: Add new UCLASS_HASH support · 4deaff79
      Chia-Wei Wang 提交于
      Add UCLASS_HASH for hash driver development. Thus the
      hash drivers (SW or HW-accelerated) can be developed
      in the DM-based fashion.
      Signed-off-by: NChia-Wei Wang <chiawei_wang@aspeedtech.com>
      4deaff79
  4. 01 9月, 2021 6 次提交
  5. 31 8月, 2021 18 次提交