| /linux/fs/ext4/ |
| H A D | mmp.c | 11 static __le32 ext4_mmp_csum(struct super_block *sb, struct mmp_struct *mmp) in ext4_mmp_csum() argument 17 csum = ext4_chksum(sbi->s_csum_seed, (char *)mmp, offset); in ext4_mmp_csum() 22 static int ext4_mmp_csum_verify(struct super_block *sb, struct mmp_struct *mmp) in ext4_mmp_csum_verify() argument 27 return mmp->mmp_checksum == ext4_mmp_csum(sb, mmp); in ext4_mmp_csum_verify() 30 static void ext4_mmp_csum_set(struct super_block *sb, struct mmp_struct *mmp) in ext4_mmp_csum_set() argument 35 mmp->mmp_checksum = ext4_mmp_csum(sb, mmp); in ext4_mmp_csum_set() 45 struct mmp_struct *mmp = (struct mmp_struct *)(bh->b_data); in write_mmp_block_thawed() local 47 ext4_mmp_csum_set(sb, mmp); in write_mmp_block_thawed() 75 struct mmp_struct *mmp; in read_mmp_block() local 97 mmp = (struct mmp_struct *)((*bh)->b_data); in read_mmp_block() [all …]
|
| H A D | Makefile | 11 mmp.o move_extent.o namei.o page-io.o readpage.o resize.o \
|
| /linux/arch/arm/boot/dts/marvell/ |
| H A D | pxa910.dtsi | 41 compatible = "mrvl,mmp-intc"; 58 compatible = "mrvl,mmp-timer"; 64 compatible = "mrvl,mmp-timer"; 71 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 81 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 91 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 101 compatible = "marvell,mmp-gpio"; 133 compatible = "mrvl,mmp-twsi"; 145 compatible = "mrvl,mmp-twsi"; 156 compatible = "mrvl,mmp-rtc";
|
| H A D | pxa168.dtsi | 36 compatible = "mrvl,mmp-intc"; 53 compatible = "mrvl,mmp-timer"; 61 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 71 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 81 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 91 compatible = "marvell,mmp-gpio"; 123 compatible = "mrvl,mmp-twsi"; 135 compatible = "mrvl,mmp-twsi"; 146 compatible = "mrvl,mmp-rtc";
|
| H A D | mmp2.dtsi | 241 compatible = "marvell,mmp-sspa"; 254 compatible = "marvell,mmp-sspa"; 285 compatible = "mrvl,mmp-timer"; 292 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 302 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 312 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 322 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 372 compatible = "mrvl,mmp-twsi"; 384 compatible = "mrvl,mmp-twsi"; 396 compatible = "mrvl,mmp-twsi"; [all …]
|
| H A D | mmp3.dtsi | 352 compatible = "mrvl,mmp-timer"; 359 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 369 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 379 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 389 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 439 compatible = "mrvl,mmp-twsi"; 451 compatible = "mrvl,mmp-twsi"; 463 compatible = "mrvl,mmp-twsi"; 475 compatible = "mrvl,mmp-twsi"; 488 compatible = "mrvl,mmp-twsi"; [all …]
|
| /linux/drivers/video/fbdev/mmp/ |
| H A D | Kconfig | 9 source "drivers/video/fbdev/mmp/hw/Kconfig" 10 source "drivers/video/fbdev/mmp/panel/Kconfig" 11 source "drivers/video/fbdev/mmp/fb/Kconfig"
|
| /linux/sound/soc/pxa/ |
| H A D | Makefile | 7 snd-soc-mmp-sspa-y := mmp-sspa.o 13 obj-$(CONFIG_SND_MMP_SOC_SSPA) += snd-soc-mmp-sspa.o
|
| /linux/arch/arm64/boot/dts/marvell/mmp/ |
| H A D | pxa1908.dtsi | 129 compatible = "mrvl,mmp-twsi"; 140 compatible = "mrvl,mmp-twsi"; 151 compatible = "mrvl,mmp-twsi"; 168 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 176 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 184 compatible = "marvell,mmp-gpio"; 260 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 268 compatible = "mrvl,mmp-twsi";
|
| /linux/drivers/video/fbdev/mmp/hw/ |
| H A D | Kconfig | 3 bool "mmp display controller hw support" 12 bool "mmp display controller spi port"
|
| /linux/drivers/media/platform/marvell/ |
| H A D | Makefile | 6 mmp_camera-y := mmp-driver.o
|
| /linux/arch/arm/mach-mmp/ |
| H A D | Makefile | 12 obj-$(CONFIG_MACH_MMP_DT) += mmp-dt.o
|
| /linux/drivers/video/fbdev/ |
| H A D | Makefile | 85 obj-$(CONFIG_MMP_DISP) += mmp/
|
| /linux/net/core/ |
| H A D | skbuff.c | 1653 int mm_account_pinned_pages(struct mmpin *mmp, size_t size) in mm_account_pinned_pages() argument 1667 user = mmp->user ? : current_user(); in mm_account_pinned_pages() 1676 if (!mmp->user) { in mm_account_pinned_pages() 1677 mmp->user = get_uid(user); in mm_account_pinned_pages() 1678 mmp->num_pg = num_pg; in mm_account_pinned_pages() 1680 mmp->num_pg += num_pg; in mm_account_pinned_pages() 1687 void mm_unaccount_pinned_pages(struct mmpin *mmp) in mm_unaccount_pinned_pages() argument 1689 if (mmp->user) { in mm_unaccount_pinned_pages() 1690 atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm); in mm_unaccount_pinned_pages() 1691 free_uid(mmp->user); in mm_unaccount_pinned_pages() [all …]
|
| /linux/drivers/clk/ |
| H A D | Makefile | 133 obj-$(CONFIG_ARCH_MMP) += mmp/
|
| H A D | Kconfig | 524 source "drivers/clk/mmp/Kconfig"
|
| /linux/include/linux/ |
| H A D | skbuff.h | 571 } mmp; member 578 int mm_account_pinned_pages(struct mmpin *mmp, size_t size); 579 void mm_unaccount_pinned_pages(struct mmpin *mmp);
|
| /linux/Documentation/arch/arm/ |
| H A D | marvell.rst | 431 arch/arm/mach-mmp
|
| /linux/arch/arm/ |
| H A D | Kconfig | 410 source "arch/arm/mach-mmp/Kconfig"
|
| /linux/ |
| H A D | MAINTAINERS | 2964 F: arch/arm64/boot/dts/marvell/mmp/ 2965 F: drivers/clk/mmp/Kconfig 2966 F: drivers/clk/mmp/clk-pxa1908*.c 17560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git 17561 F: arch/arm/boot/dts/marvell/mmp* 17562 F: arch/arm/mach-mmp/ 17563 F: include/linux/soc/mmp/
|