From nobody Wed Dec 17 10:42:40 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BF375EE49B2 for ; Tue, 22 Aug 2023 07:09:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233241AbjHVHJ6 (ORCPT ); Tue, 22 Aug 2023 03:09:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41930 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233234AbjHVHJu (ORCPT ); Tue, 22 Aug 2023 03:09:50 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A07D9CD4 for ; Tue, 22 Aug 2023 00:09:47 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 35D96649D9 for ; Tue, 22 Aug 2023 07:09:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CEF3FC433CC; Tue, 22 Aug 2023 07:09:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692688186; bh=FEz+x044HaJXIEP12prthCCwYdEPCM16pe3GigXUbHQ=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=JWyCxz8JTz1AlvMZRRrbhgZttEfqaIvq7ONiuvSFtykGBos/XatVt2eJEAVZH+04o byWQyHE9X/t+rdF0vW2T71GvuREtPxpkLhthdXy8XqkgBeoD8suLuDS4eCT393RFd3 TYa4J1LJbwdO80pz8J8TyoRFNgp016K4d2DPLfyCW3nouwTV+eR4dVCECeNCRaRdst OjNJY7MgDNKJ6CE1dCduK+ocUN1Au2Ho8E9ZQ2ZWRopm09I0Wgn2UTRTwAoWZ5GOFj tRCzcxZl4XvCdGXPzacC/G6bPZkL6Xq7uqoFnrXTKUCSMj4h8uYIsPbv/BKlgCamIx 3Sn0E1+Yn+iaQ== From: Michael Walle Date: Tue, 22 Aug 2023 09:09:21 +0200 Subject: [PATCH v2 05/41] mtd: spi-nor: convert .n_sectors to .size MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20230807-mtd-flash-info-db-rework-v2-5-291a0f39f8d8@kernel.org> References: <20230807-mtd-flash-info-db-rework-v2-0-291a0f39f8d8@kernel.org> In-Reply-To: <20230807-mtd-flash-info-db-rework-v2-0-291a0f39f8d8@kernel.org> To: Tudor Ambarus , Pratyush Yadav , Miquel Raynal , Richard Weinberger , Vignesh Raghavendra Cc: linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org, Michael Walle X-Mailer: b4 0.12.2 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org .n_sectors is rarely used. In fact it is only used in swp.c and to calculate the flash size in the core. The use in swp.c might be converted to use the (largest) flash erase size. For now, we just locally calculate the sector size. Simplify the flash_info database and set the size of the flash directly. This also let us use the SZ_x macros. Signed-off-by: Michael Walle --- drivers/mtd/spi-nor/core.c | 2 +- drivers/mtd/spi-nor/core.h | 8 ++++---- drivers/mtd/spi-nor/swp.c | 9 +++++---- drivers/mtd/spi-nor/xilinx.c | 4 ++-- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c index 286155002cdc..f4cc2eafcc5e 100644 --- a/drivers/mtd/spi-nor/core.c +++ b/drivers/mtd/spi-nor/core.c @@ -2999,7 +2999,7 @@ static void spi_nor_init_default_params(struct spi_no= r *nor) =20 /* Set SPI NOR sizes. */ params->writesize =3D 1; - params->size =3D (u64)info->sector_size * info->n_sectors; + params->size =3D info->size; params->bank_size =3D params->size; params->page_size =3D info->page_size; =20 diff --git a/drivers/mtd/spi-nor/core.h b/drivers/mtd/spi-nor/core.h index dfc20a3296fb..12c35409493b 100644 --- a/drivers/mtd/spi-nor/core.h +++ b/drivers/mtd/spi-nor/core.h @@ -443,9 +443,9 @@ struct spi_nor_fixups { * @id: the flash's ID bytes. The first three bytes are the * JEDIC ID. JEDEC ID zero means "no ID" (mostly older ch= ips). * @id_len: the number of bytes of ID. + * @size: the size of the flash in bytes. * @sector_size: the size listed here is what works with SPINOR_OP_SE, = which * isn't necessarily called a "sector" by the vendor. - * @n_sectors: the number of sectors. * @n_banks: the number of banks. * @page_size: the flash's page size. * @addr_nbytes: number of address bytes to send. @@ -505,8 +505,8 @@ struct flash_info { char *name; u8 id[SPI_NOR_MAX_ID_LEN]; u8 id_len; + size_t size; unsigned sector_size; - u16 n_sectors; u16 page_size; u8 n_banks; u8 addr_nbytes; @@ -556,8 +556,8 @@ struct flash_info { .id_len =3D 6 =20 #define SPI_NOR_GEOMETRY(_sector_size, _n_sectors, _n_banks) \ + .size =3D (_sector_size) * (_n_sectors), \ .sector_size =3D (_sector_size), \ - .n_sectors =3D (_n_sectors), \ .page_size =3D 256, \ .n_banks =3D (_n_banks) =20 @@ -575,8 +575,8 @@ struct flash_info { SPI_NOR_GEOMETRY((_sector_size), (_n_sectors), 1), =20 #define CAT25_INFO(_sector_size, _n_sectors, _page_size, _addr_nbytes) \ + .size =3D (_sector_size) * (_n_sectors), \ .sector_size =3D (_sector_size), \ - .n_sectors =3D (_n_sectors), \ .page_size =3D (_page_size), \ .n_banks =3D 1, \ .addr_nbytes =3D (_addr_nbytes), \ diff --git a/drivers/mtd/spi-nor/swp.c b/drivers/mtd/spi-nor/swp.c index 5ab9d5324860..40bf52867095 100644 --- a/drivers/mtd/spi-nor/swp.c +++ b/drivers/mtd/spi-nor/swp.c @@ -34,17 +34,18 @@ static u8 spi_nor_get_sr_tb_mask(struct spi_nor *nor) static u64 spi_nor_get_min_prot_length_sr(struct spi_nor *nor) { unsigned int bp_slots, bp_slots_needed; + unsigned int sector_size =3D nor->info->sector_size; + u64 n_sectors =3D div_u64(nor->params->size, sector_size); u8 mask =3D spi_nor_get_sr_bp_mask(nor); =20 /* Reserved one for "protect none" and one for "protect all". */ bp_slots =3D (1 << hweight8(mask)) - 2; - bp_slots_needed =3D ilog2(nor->info->n_sectors); + bp_slots_needed =3D ilog2(n_sectors); =20 if (bp_slots_needed > bp_slots) - return nor->info->sector_size << - (bp_slots_needed - bp_slots); + return sector_size << (bp_slots_needed - bp_slots); else - return nor->info->sector_size; + return sector_size; } =20 static void spi_nor_get_locked_range_sr(struct spi_nor *nor, u8 sr, loff_t= *ofs, diff --git a/drivers/mtd/spi-nor/xilinx.c b/drivers/mtd/spi-nor/xilinx.c index 34267591282c..284e2e4970ab 100644 --- a/drivers/mtd/spi-nor/xilinx.c +++ b/drivers/mtd/spi-nor/xilinx.c @@ -23,8 +23,8 @@ =20 #define S3AN_INFO(_jedec_id, _n_sectors, _page_size) \ SPI_NOR_ID(_jedec_id, 0), \ + .size =3D 8 * (_page_size) * (_n_sectors), \ .sector_size =3D (8 * (_page_size)), \ - .n_sectors =3D (_n_sectors), \ .page_size =3D (_page_size), \ .n_banks =3D 1, \ .flags =3D SPI_NOR_NO_FR @@ -138,7 +138,7 @@ static int xilinx_nor_setup(struct spi_nor *nor, page_size =3D (nor->params->page_size =3D=3D 264) ? 256 : 512; nor->params->page_size =3D page_size; nor->mtd.writebufsize =3D page_size; - nor->params->size =3D 8 * page_size * nor->info->n_sectors; + nor->params->size =3D nor->info->size; nor->mtd.erasesize =3D 8 * page_size; } else { /* Flash in Default addressing mode */ --=20 2.39.2