[broonie-spi:for-next 32/35] drivers/spi/spi-bcm63xx-hsspi.c:197:31: sparse: sparse: cast from restricted __be16

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



tree:   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
head:   2ea9b08a661274b9b7b182327bf6ffe29605d671
commit: 85a84a61699990db6a025b5073f337f49933a875 [32/35] spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
config: arm-randconfig-s032-20230210 (https://download.01.org/0day-ci/archive/20230211/202302110438.sQwQnU54-lkp@xxxxxxxxx/config)
compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # apt-get install sparse
        # sparse version: v0.6.4-39-gce1a6720-dirty
        # https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git/commit/?id=85a84a61699990db6a025b5073f337f49933a875
        git remote add broonie-spi https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
        git fetch --no-tags broonie-spi for-next
        git checkout 85a84a61699990db6a025b5073f337f49933a875
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=arm olddefconfig
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=arm SHELL=/bin/bash drivers/spi/

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@xxxxxxxxx>
| Link: https://lore.kernel.org/oe-kbuild-all/202302110438.sQwQnU54-lkp@xxxxxxxxx/

sparse warnings: (new ones prefixed by >>)
>> drivers/spi/spi-bcm63xx-hsspi.c:197:31: sparse: sparse: cast from restricted __be16

vim +197 drivers/spi/spi-bcm63xx-hsspi.c

   156	
   157	static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
   158	{
   159		struct bcm63xx_hsspi *bs = spi_master_get_devdata(spi->master);
   160		unsigned int chip_select = spi->chip_select;
   161		u16 opcode = 0;
   162		int pending = t->len;
   163		int step_size = HSSPI_BUFFER_LEN;
   164		const u8 *tx = t->tx_buf;
   165		u8 *rx = t->rx_buf;
   166	
   167		bcm63xx_hsspi_set_clk(bs, spi, t->speed_hz);
   168		bcm63xx_hsspi_set_cs(bs, spi->chip_select, true);
   169	
   170		if (tx && rx)
   171			opcode = HSSPI_OP_READ_WRITE;
   172		else if (tx)
   173			opcode = HSSPI_OP_WRITE;
   174		else if (rx)
   175			opcode = HSSPI_OP_READ;
   176	
   177		if (opcode != HSSPI_OP_READ)
   178			step_size -= HSSPI_OPCODE_LEN;
   179	
   180		if ((opcode == HSSPI_OP_READ && t->rx_nbits == SPI_NBITS_DUAL) ||
   181		    (opcode == HSSPI_OP_WRITE && t->tx_nbits == SPI_NBITS_DUAL))
   182			opcode |= HSSPI_OP_MULTIBIT;
   183	
   184		__raw_writel(1 << MODE_CTRL_MULTIDATA_WR_SIZE_SHIFT |
   185			     1 << MODE_CTRL_MULTIDATA_RD_SIZE_SHIFT | 0xff,
   186			     bs->regs + HSSPI_PROFILE_MODE_CTRL_REG(chip_select));
   187	
   188		while (pending > 0) {
   189			int curr_step = min_t(int, step_size, pending);
   190	
   191			reinit_completion(&bs->done);
   192			if (tx) {
   193				memcpy_toio(bs->fifo + HSSPI_OPCODE_LEN, tx, curr_step);
   194				tx += curr_step;
   195			}
   196	
 > 197			__raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
   198	
   199			/* enable interrupt */
   200			__raw_writel(HSSPI_PINGx_CMD_DONE(0),
   201				     bs->regs + HSSPI_INT_MASK_REG);
   202	
   203			/* start the transfer */
   204			__raw_writel(!chip_select << PINGPONG_CMD_SS_SHIFT |
   205				     chip_select << PINGPONG_CMD_PROFILE_SHIFT |
   206				     PINGPONG_COMMAND_START_NOW,
   207				     bs->regs + HSSPI_PINGPONG_COMMAND_REG(0));
   208	
   209			if (wait_for_completion_timeout(&bs->done, HZ) == 0) {
   210				dev_err(&bs->pdev->dev, "transfer timed out!\n");
   211				return -ETIMEDOUT;
   212			}
   213	
   214			if (rx) {
   215				memcpy_fromio(rx, bs->fifo, curr_step);
   216				rx += curr_step;
   217			}
   218	
   219			pending -= curr_step;
   220		}
   221	
   222		return 0;
   223	}
   224	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests



[Index of Archives]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux