mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 10:06:48 +07:00
e31cf2f4ca
Patch series "mm: consolidate definitions of page table accessors", v2. The low level page table accessors (pXY_index(), pXY_offset()) are duplicated across all architectures and sometimes more than once. For instance, we have 31 definition of pgd_offset() for 25 supported architectures. Most of these definitions are actually identical and typically it boils down to, e.g. static inline unsigned long pmd_index(unsigned long address) { return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1); } static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address) { return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(address); } These definitions can be shared among 90% of the arches provided XYZ_SHIFT, PTRS_PER_XYZ and xyz_page_vaddr() are defined. For architectures that really need a custom version there is always possibility to override the generic version with the usual ifdefs magic. These patches introduce include/linux/pgtable.h that replaces include/asm-generic/pgtable.h and add the definitions of the page table accessors to the new header. This patch (of 12): The linux/mm.h header includes <asm/pgtable.h> to allow inlining of the functions involving page table manipulations, e.g. pte_alloc() and pmd_alloc(). So, there is no point to explicitly include <asm/pgtable.h> in the files that include <linux/mm.h>. The include statements in such cases are remove with a simple loop: for f in $(git grep -l "include <linux/mm.h>") ; do sed -i -e '/include <asm\/pgtable.h>/ d' $f done Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Cain <bcain@codeaurora.org> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Chris Zankel <chris@zankel.net> Cc: "David S. Miller" <davem@davemloft.net> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Greentime Hu <green.hu@gmail.com> Cc: Greg Ungerer <gerg@linux-m68k.org> Cc: Guan Xuetao <gxt@pku.edu.cn> Cc: Guo Ren <guoren@kernel.org> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Helge Deller <deller@gmx.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Ley Foon Tan <ley.foon.tan@intel.com> Cc: Mark Salter <msalter@redhat.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Matt Turner <mattst88@gmail.com> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Michal Simek <monstr@monstr.eu> Cc: Mike Rapoport <rppt@kernel.org> Cc: Nick Hu <nickhu@andestech.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Richard Weinberger <richard@nod.at> Cc: Rich Felker <dalias@libc.org> Cc: Russell King <linux@armlinux.org.uk> Cc: Stafford Horne <shorne@gmail.com> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Tony Luck <tony.luck@intel.com> Cc: Vincent Chen <deanbo422@gmail.com> Cc: Vineet Gupta <vgupta@synopsys.com> Cc: Will Deacon <will@kernel.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Link: http://lkml.kernel.org/r/20200514170327.31389-1-rppt@kernel.org Link: http://lkml.kernel.org/r/20200514170327.31389-2-rppt@kernel.org Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
110 lines
2.6 KiB
C
110 lines
2.6 KiB
C
/*
|
|
* linux/arch/m68k/atari/atasound.c
|
|
*
|
|
* ++Geert: Moved almost all stuff to linux/drivers/sound/
|
|
*
|
|
* The author of atari_nosound, atari_mksound and atari_microwire_cmd is
|
|
* unknown. (++roman: That's me... :-)
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* 1998-05-31 ++andreas: atari_mksound rewritten to always use the envelope,
|
|
* no timer, atari_nosound removed.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <linux/sched.h>
|
|
#include <linux/timer.h>
|
|
#include <linux/major.h>
|
|
#include <linux/fcntl.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/atarihw.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/atariints.h>
|
|
|
|
|
|
/*
|
|
* stuff from the old atasound.c
|
|
*/
|
|
|
|
void atari_microwire_cmd (int cmd)
|
|
{
|
|
tt_microwire.mask = 0x7ff;
|
|
tt_microwire.data = MW_LM1992_ADDR | cmd;
|
|
|
|
/* Busy wait for data being completely sent :-( */
|
|
while( tt_microwire.mask != 0x7ff)
|
|
;
|
|
}
|
|
EXPORT_SYMBOL(atari_microwire_cmd);
|
|
|
|
|
|
/* PSG base frequency */
|
|
#define PSG_FREQ 125000
|
|
/* PSG envelope base frequency times 10 */
|
|
#define PSG_ENV_FREQ_10 78125
|
|
|
|
void atari_mksound (unsigned int hz, unsigned int ticks)
|
|
{
|
|
/* Generates sound of some frequency for some number of clock
|
|
ticks. */
|
|
unsigned long flags;
|
|
unsigned char tmp;
|
|
int period;
|
|
|
|
local_irq_save(flags);
|
|
|
|
|
|
/* Disable generator A in mixer control. */
|
|
sound_ym.rd_data_reg_sel = 7;
|
|
tmp = sound_ym.rd_data_reg_sel;
|
|
tmp |= 011;
|
|
sound_ym.wd_data = tmp;
|
|
|
|
if (hz) {
|
|
/* Convert from frequency value to PSG period value (base
|
|
frequency 125 kHz). */
|
|
|
|
period = PSG_FREQ / hz;
|
|
|
|
if (period > 0xfff) period = 0xfff;
|
|
|
|
/* Set generator A frequency to hz. */
|
|
sound_ym.rd_data_reg_sel = 0;
|
|
sound_ym.wd_data = period & 0xff;
|
|
sound_ym.rd_data_reg_sel = 1;
|
|
sound_ym.wd_data = (period >> 8) & 0xf;
|
|
if (ticks) {
|
|
/* Set length of envelope (max 8 sec). */
|
|
int length = (ticks * PSG_ENV_FREQ_10) / HZ / 10;
|
|
|
|
if (length > 0xffff) length = 0xffff;
|
|
sound_ym.rd_data_reg_sel = 11;
|
|
sound_ym.wd_data = length & 0xff;
|
|
sound_ym.rd_data_reg_sel = 12;
|
|
sound_ym.wd_data = length >> 8;
|
|
/* Envelope form: max -> min single. */
|
|
sound_ym.rd_data_reg_sel = 13;
|
|
sound_ym.wd_data = 0;
|
|
/* Use envelope for generator A. */
|
|
sound_ym.rd_data_reg_sel = 8;
|
|
sound_ym.wd_data = 0x10;
|
|
} else {
|
|
/* Set generator A level to maximum, no envelope. */
|
|
sound_ym.rd_data_reg_sel = 8;
|
|
sound_ym.wd_data = 15;
|
|
}
|
|
/* Turn on generator A in mixer control. */
|
|
sound_ym.rd_data_reg_sel = 7;
|
|
tmp &= ~1;
|
|
sound_ym.wd_data = tmp;
|
|
}
|
|
local_irq_restore(flags);
|
|
}
|