From: James Hogan <james.hogan@imgtec.com>
To: Paul Burton <paul.burton@imgtec.com>
Cc: <linux-mips@linux-mips.org>, Ralf Baechle <ralf@linux-mips.org>,
"Maciej W. Rozycki" <macro@linux-mips.org>,
<linux-kernel@vger.kernel.org>,
"Markos Chandras" <markos.chandras@imgtec.com>,
Alex Smith <alex.smith@imgtec.com>,
"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
Subject: Re: [PATCH 04/12] MIPS: Use enums to make asm/pgtable-bits.h readable
Date: Fri, 15 Apr 2016 21:29:06 +0100 [thread overview]
Message-ID: <20160415202906.GF7859@jhogan-linux.le.imgtec.org> (raw)
In-Reply-To: <1460716620-13382-5-git-send-email-paul.burton@imgtec.com>
[-- Attachment #1: Type: text/plain, Size: 9925 bytes --]
On Fri, Apr 15, 2016 at 11:36:52AM +0100, Paul Burton wrote:
> asm/pgtable-bits.h has grown to become an unreadable mess of #ifdef
> directives defining bits conditionally upon other bits all at the
> preprocessing stage, for no good reason.
>
> Instead of having quite so many #ifdef's, simply use enums to provide
> sequential numbering for bit shifts, without having to keep track
> manually of what the last bit defined was. Masks are defined separately,
> after the shifts, which allows for most of their definitions to be
> reused for all systems rather than duplicated.
>
> This patch is not intended to make any behavioural change to the code -
> all bits should be used in the same way they were before this patch.
>
> Signed-off-by: Paul Burton <paul.burton@imgtec.com>
> ---
>
> arch/mips/include/asm/pgtable-bits.h | 189 +++++++++++++++--------------------
> 1 file changed, 81 insertions(+), 108 deletions(-)
Having had to work my way through some of this file to manually walk
page tables only this week, I really do think this is an excellent
cleanup (if nothing else, look at that diffstat :-D ).
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Thanks!
James
>
> diff --git a/arch/mips/include/asm/pgtable-bits.h b/arch/mips/include/asm/pgtable-bits.h
> index 2f40312..c81fc17 100644
> --- a/arch/mips/include/asm/pgtable-bits.h
> +++ b/arch/mips/include/asm/pgtable-bits.h
> @@ -35,36 +35,25 @@
> #if defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
>
> /*
> - * The following bits are implemented by the TLB hardware
> + * Page table bit offsets used for 64 bit physical addressing on MIPS32,
> + * for example with Alchemy, Netlogic XLP/XLR or XPA.
> */
> -#define _PAGE_NO_EXEC_SHIFT 0
> -#define _PAGE_NO_EXEC (1 << _PAGE_NO_EXEC_SHIFT)
> -#define _PAGE_NO_READ_SHIFT (_PAGE_NO_EXEC_SHIFT + 1)
> -#define _PAGE_NO_READ (1 << _PAGE_NO_READ_SHIFT)
> -#define _PAGE_GLOBAL_SHIFT (_PAGE_NO_READ_SHIFT + 1)
> -#define _PAGE_GLOBAL (1 << _PAGE_GLOBAL_SHIFT)
> -#define _PAGE_VALID_SHIFT (_PAGE_GLOBAL_SHIFT + 1)
> -#define _PAGE_VALID (1 << _PAGE_VALID_SHIFT)
> -#define _PAGE_DIRTY_SHIFT (_PAGE_VALID_SHIFT + 1)
> -#define _PAGE_DIRTY (1 << _PAGE_DIRTY_SHIFT)
> -#define _CACHE_SHIFT (_PAGE_DIRTY_SHIFT + 1)
> -#define _CACHE_MASK (7 << _CACHE_SHIFT)
> -
> -/*
> - * The following bits are implemented in software
> - */
> -#define _PAGE_PRESENT_SHIFT (24)
> -#define _PAGE_PRESENT (1 << _PAGE_PRESENT_SHIFT)
> -#define _PAGE_READ_SHIFT (_PAGE_PRESENT_SHIFT + 1)
> -#define _PAGE_READ (1 << _PAGE_READ_SHIFT)
> -#define _PAGE_WRITE_SHIFT (_PAGE_READ_SHIFT + 1)
> -#define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
> -#define _PAGE_ACCESSED_SHIFT (_PAGE_WRITE_SHIFT + 1)
> -#define _PAGE_ACCESSED (1 << _PAGE_ACCESSED_SHIFT)
> -#define _PAGE_MODIFIED_SHIFT (_PAGE_ACCESSED_SHIFT + 1)
> -#define _PAGE_MODIFIED (1 << _PAGE_MODIFIED_SHIFT)
> -
> -#define _PFN_SHIFT (PAGE_SHIFT - 12 + _CACHE_SHIFT + 3)
> +enum pgtable_bits {
> + /* Used by TLB hardware (placed in EntryLo*) */
> + _PAGE_NO_EXEC_SHIFT,
> + _PAGE_NO_READ_SHIFT,
> + _PAGE_GLOBAL_SHIFT,
> + _PAGE_VALID_SHIFT,
> + _PAGE_DIRTY_SHIFT,
> + _CACHE_SHIFT,
> +
> + /* Used only by software (masked out before writing EntryLo*) */
> + _PAGE_PRESENT_SHIFT = 24,
> + _PAGE_READ_SHIFT,
> + _PAGE_WRITE_SHIFT,
> + _PAGE_ACCESSED_SHIFT,
> + _PAGE_MODIFIED_SHIFT,
> +};
>
> /*
> * Bits for extended EntryLo0/EntryLo1 registers
> @@ -73,101 +62,85 @@
>
> #elif defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
>
> -/*
> - * The following bits are implemented in software
> - */
> -#define _PAGE_PRESENT_SHIFT (0)
> -#define _PAGE_PRESENT (1 << _PAGE_PRESENT_SHIFT)
> -#define _PAGE_READ_SHIFT (_PAGE_PRESENT_SHIFT + 1)
> -#define _PAGE_READ (1 << _PAGE_READ_SHIFT)
> -#define _PAGE_WRITE_SHIFT (_PAGE_READ_SHIFT + 1)
> -#define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
> -#define _PAGE_ACCESSED_SHIFT (_PAGE_WRITE_SHIFT + 1)
> -#define _PAGE_ACCESSED (1 << _PAGE_ACCESSED_SHIFT)
> -#define _PAGE_MODIFIED_SHIFT (_PAGE_ACCESSED_SHIFT + 1)
> -#define _PAGE_MODIFIED (1 << _PAGE_MODIFIED_SHIFT)
> +/* Page table bits used for r3k systems */
> +enum pgtable_bits {
> + /* Used only by software (writes to EntryLo ignored) */
> + _PAGE_PRESENT_SHIFT,
> + _PAGE_READ_SHIFT,
> + _PAGE_WRITE_SHIFT,
> + _PAGE_ACCESSED_SHIFT,
> + _PAGE_MODIFIED_SHIFT,
> +
> + /* Used by TLB hardware (placed in EntryLo) */
> + _PAGE_GLOBAL_SHIFT = 8,
> + _PAGE_VALID_SHIFT,
> + _PAGE_DIRTY_SHIFT,
> + _CACHE_UNCACHED_SHIFT,
> +};
>
> -/*
> - * The following bits are implemented by the TLB hardware
> - */
> -#define _PAGE_GLOBAL_SHIFT (_PAGE_MODIFIED_SHIFT + 4)
> -#define _PAGE_GLOBAL (1 << _PAGE_GLOBAL_SHIFT)
> -#define _PAGE_VALID_SHIFT (_PAGE_GLOBAL_SHIFT + 1)
> -#define _PAGE_VALID (1 << _PAGE_VALID_SHIFT)
> -#define _PAGE_DIRTY_SHIFT (_PAGE_VALID_SHIFT + 1)
> -#define _PAGE_DIRTY (1 << _PAGE_DIRTY_SHIFT)
> -#define _CACHE_UNCACHED_SHIFT (_PAGE_DIRTY_SHIFT + 1)
> -#define _CACHE_UNCACHED (1 << _CACHE_UNCACHED_SHIFT)
> -#define _CACHE_MASK _CACHE_UNCACHED
> +#else
>
> -#define _PFN_SHIFT PAGE_SHIFT
> +/* Page table bits used for r4k systems */
> +enum pgtable_bits {
> + /* Used only by software (masked out before writing EntryLo*) */
> + _PAGE_PRESENT_SHIFT,
> +#if !defined(CONFIG_CPU_MIPSR2) && !defined(CONFIG_CPU_MIPSR6)
> + _PAGE_READ_SHIFT,
> +#endif
> + _PAGE_WRITE_SHIFT,
> + _PAGE_ACCESSED_SHIFT,
> + _PAGE_MODIFIED_SHIFT,
> +#if defined(CONFIG_64BIT) && defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
> + _PAGE_HUGE_SHIFT,
> +#endif
>
> -#else
> -/*
> - * Below are the "Normal" R4K cases
> - */
> + /* Used by TLB hardware (placed in EntryLo*) */
> +#if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
> + _PAGE_NO_EXEC_SHIFT,
> + _PAGE_NO_READ_SHIFT,
> + _PAGE_READ_SHIFT = _PAGE_NO_READ_SHIFT,
> +#endif
> + _PAGE_GLOBAL_SHIFT,
> + _PAGE_VALID_SHIFT,
> + _PAGE_DIRTY_SHIFT,
> + _CACHE_SHIFT,
> +};
>
> -/*
> - * The following bits are implemented in software
> - */
> -#define _PAGE_PRESENT_SHIFT 0
> +#endif /* defined(CONFIG_PHYS_ADDR_T_64BIT && defined(CONFIG_CPU_MIPS32) */
> +
> +/* Used only by software */
> #define _PAGE_PRESENT (1 << _PAGE_PRESENT_SHIFT)
> -/* R2 or later cores check for RI/XI support to determine _PAGE_READ */
> #if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
> -#define _PAGE_WRITE_SHIFT (_PAGE_PRESENT_SHIFT + 1)
> -#define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
> +# define _PAGE_READ (cpu_has_rixi ? 0 : (1 << _PAGE_READ_SHIFT))
> #else
> -#define _PAGE_READ_SHIFT (_PAGE_PRESENT_SHIFT + 1)
> -#define _PAGE_READ (1 << _PAGE_READ_SHIFT)
> -#define _PAGE_WRITE_SHIFT (_PAGE_READ_SHIFT + 1)
> -#define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
> +# define _PAGE_READ (1 << _PAGE_READ_SHIFT)
> #endif
> -#define _PAGE_ACCESSED_SHIFT (_PAGE_WRITE_SHIFT + 1)
> +#define _PAGE_WRITE (1 << _PAGE_WRITE_SHIFT)
> #define _PAGE_ACCESSED (1 << _PAGE_ACCESSED_SHIFT)
> -#define _PAGE_MODIFIED_SHIFT (_PAGE_ACCESSED_SHIFT + 1)
> #define _PAGE_MODIFIED (1 << _PAGE_MODIFIED_SHIFT)
> -
> #if defined(CONFIG_64BIT) && defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
> -/* Huge TLB page */
> -#define _PAGE_HUGE_SHIFT (_PAGE_MODIFIED_SHIFT + 1)
> -#define _PAGE_HUGE (1 << _PAGE_HUGE_SHIFT)
> -#endif /* CONFIG_64BIT && CONFIG_MIPS_HUGE_TLB_SUPPORT */
> -
> -#if defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
> -/* XI - page cannot be executed */
> -#ifdef _PAGE_HUGE_SHIFT
> -#define _PAGE_NO_EXEC_SHIFT (_PAGE_HUGE_SHIFT + 1)
> -#else
> -#define _PAGE_NO_EXEC_SHIFT (_PAGE_MODIFIED_SHIFT + 1)
> +# define _PAGE_HUGE (1 << _PAGE_HUGE_SHIFT)
> #endif
> -#define _PAGE_NO_EXEC (cpu_has_rixi ? (1 << _PAGE_NO_EXEC_SHIFT) : 0)
> -
> -/* RI - page cannot be read */
> -#define _PAGE_READ_SHIFT (_PAGE_NO_EXEC_SHIFT + 1)
> -#define _PAGE_READ (cpu_has_rixi ? 0 : (1 << _PAGE_READ_SHIFT))
> -#define _PAGE_NO_READ_SHIFT _PAGE_READ_SHIFT
> -#define _PAGE_NO_READ (cpu_has_rixi ? (1 << _PAGE_READ_SHIFT) : 0)
> -#endif /* defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) */
> -
> -#if defined(_PAGE_NO_READ_SHIFT)
> -#define _PAGE_GLOBAL_SHIFT (_PAGE_NO_READ_SHIFT + 1)
> -#elif defined(_PAGE_HUGE_SHIFT)
> -#define _PAGE_GLOBAL_SHIFT (_PAGE_HUGE_SHIFT + 1)
> -#else
> -#define _PAGE_GLOBAL_SHIFT (_PAGE_MODIFIED_SHIFT + 1)
> +
> +/* Used by TLB hardware (placed in EntryLo*) */
> +#if (defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32))
> +# define _PAGE_NO_EXEC (1 << _PAGE_NO_EXEC_SHIFT)
> +# define _PAGE_NO_READ (1 << _PAGE_NO_READ_SHIFT)
> +#elif defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6)
> +# define _PAGE_NO_EXEC (cpu_has_rixi ? (1 << _PAGE_NO_EXEC_SHIFT) : 0)
> +# define _PAGE_NO_READ (cpu_has_rixi ? (1 << _PAGE_NO_READ_SHIFT) : 0)
> #endif
> #define _PAGE_GLOBAL (1 << _PAGE_GLOBAL_SHIFT)
> -
> -#define _PAGE_VALID_SHIFT (_PAGE_GLOBAL_SHIFT + 1)
> #define _PAGE_VALID (1 << _PAGE_VALID_SHIFT)
> -#define _PAGE_DIRTY_SHIFT (_PAGE_VALID_SHIFT + 1)
> #define _PAGE_DIRTY (1 << _PAGE_DIRTY_SHIFT)
> -#define _CACHE_SHIFT (_PAGE_DIRTY_SHIFT + 1)
> -#define _CACHE_MASK (7 << _CACHE_SHIFT)
> -
> -#define _PFN_SHIFT (PAGE_SHIFT - 12 + _CACHE_SHIFT + 3)
> -
> -#endif /* defined(CONFIG_PHYS_ADDR_T_64BIT && defined(CONFIG_CPU_MIPS32) */
> +#if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
> +# define _CACHE_UNCACHED (1 << _CACHE_UNCACHED_SHIFT)
> +# define _CACHE_MASK _CACHE_UNCACHED
> +# define _PFN_SHIFT PAGE_SHIFT
> +#else
> +# define _CACHE_MASK (7 << _CACHE_SHIFT)
> +# define _PFN_SHIFT (PAGE_SHIFT - 12 + _CACHE_SHIFT + 3)
> +#endif
>
> #ifndef _PAGE_NO_EXEC
> #define _PAGE_NO_EXEC 0
> --
> 2.8.0
>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-04-15 20:29 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1460716620-13382-1-git-send-email-paul.burton@imgtec.com>
2016-04-15 10:36 ` [PATCH 01/12] MIPS: Separate XPA CPU feature into LPA and MVH Paul Burton
2016-04-15 10:36 ` [PATCH 02/12] MIPS: Fix HTW config on XPA kernel without LPA enabled Paul Burton
2016-04-15 10:36 ` [PATCH 03/12] MIPS: Remove redundant asm/pgtable-bits.h inclusions Paul Burton
2016-04-15 19:16 ` James Hogan
2016-04-15 21:19 ` Paul Burton
2016-04-15 10:36 ` [PATCH 04/12] MIPS: Use enums to make asm/pgtable-bits.h readable Paul Burton
2016-04-15 20:29 ` James Hogan [this message]
2016-05-11 9:38 ` Ralf Baechle
2016-04-15 10:36 ` [PATCH 06/12] MIPS: mm: Unify pte_page definition Paul Burton
2016-04-15 23:16 ` James Hogan
2016-04-15 10:36 ` [PATCH 08/12] MIPS: mm: Don't clobber $1 on XPA TLB refill Paul Burton
2016-04-15 10:36 ` [PATCH 09/12] MIPS: mm: Pass scratch register through to iPTE_SW Paul Burton
2016-04-15 22:28 ` James Hogan
2016-04-15 10:36 ` [PATCH 10/12] MIPS: mm: Be more explicit about PTE mode bit handling Paul Burton
2016-04-15 10:36 ` [PATCH 11/12] MIPS: mm: Simplify build_update_entries Paul Burton
2016-04-15 23:09 ` James Hogan
2016-04-15 10:37 ` [PATCH 12/12] MIPS: mm: Don't do MTHC0 if XPA not present Paul Burton
2016-05-10 12:44 ` [PATCH 00/12] TLB/XPA fixes & cleanups Ralf Baechle
2016-05-10 17:47 ` Florian Fainelli
2016-05-11 10:03 ` Ralf Baechle
2016-05-11 19:17 ` Florian Fainelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160415202906.GF7859@jhogan-linux.le.imgtec.org \
--to=james.hogan@imgtec.com \
--cc=alex.smith@imgtec.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=macro@linux-mips.org \
--cc=markos.chandras@imgtec.com \
--cc=paul.burton@imgtec.com \
--cc=ralf@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome