| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/52xx/ |
| H A D | mpc52xx_gpt.c | 137 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d); in mpc52xx_gpt_irq_unmask() local 140 raw_spin_lock_irqsave(&gpt->lock, flags); in mpc52xx_gpt_irq_unmask() 141 setbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_IRQ_EN); in mpc52xx_gpt_irq_unmask() 142 raw_spin_unlock_irqrestore(&gpt->lock, flags); in mpc52xx_gpt_irq_unmask() 147 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d); in mpc52xx_gpt_irq_mask() local 150 raw_spin_lock_irqsave(&gpt->lock, flags); in mpc52xx_gpt_irq_mask() 151 clrbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_IRQ_EN); in mpc52xx_gpt_irq_mask() 152 raw_spin_unlock_irqrestore(&gpt->lock, flags); in mpc52xx_gpt_irq_mask() 157 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d); in mpc52xx_gpt_irq_ack() local 159 out_be32(&gpt->regs->status, MPC52xx_GPT_STATUS_IRQMASK); in mpc52xx_gpt_irq_ack() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/clk/spear/ |
| H A D | clk-gpt-synth.c | 37 struct clk_gpt *gpt = to_clk_gpt(hw); in gpt_calc_rate() local 38 struct gpt_rate_tbl *rtbl = gpt->rtbl; in gpt_calc_rate() 48 struct clk_gpt *gpt = to_clk_gpt(hw); in clk_gpt_round_rate() local 52 gpt->rtbl_cnt, &unused); in clk_gpt_round_rate() 58 struct clk_gpt *gpt = to_clk_gpt(hw); in clk_gpt_recalc_rate() local 62 if (gpt->lock) in clk_gpt_recalc_rate() 63 spin_lock_irqsave(gpt->lock, flags); in clk_gpt_recalc_rate() 65 val = readl_relaxed(gpt->reg); in clk_gpt_recalc_rate() 67 if (gpt->lock) in clk_gpt_recalc_rate() 68 spin_unlock_irqrestore(gpt->lock, flags); in clk_gpt_recalc_rate() [all …]
|
| /OK3568_Linux_fs/kernel/block/partitions/ |
| H A D | efi.c | 274 gpt_header *gpt) in alloc_read_gpt_entries() argument 279 if (!gpt) in alloc_read_gpt_entries() 282 count = (size_t)le32_to_cpu(gpt->num_partition_entries) * in alloc_read_gpt_entries() 283 le32_to_cpu(gpt->sizeof_partition_entry); in alloc_read_gpt_entries() 290 if (read_lba(state, le64_to_cpu(gpt->partition_entry_lba), in alloc_read_gpt_entries() 311 gpt_header *gpt; in alloc_read_gpt_header() local 314 gpt = kmalloc(ssz, GFP_KERNEL); in alloc_read_gpt_header() 315 if (!gpt) in alloc_read_gpt_header() 318 if (read_lba(state, lba, (u8 *) gpt, ssz) < ssz) { in alloc_read_gpt_header() 319 kfree(gpt); in alloc_read_gpt_header() [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/arm926ejs/mx25/ |
| H A D | timer.c | 32 struct gpt_regs *gpt = (struct gpt_regs *)IMX_GPT1_BASE; in timer_init() local 36 writel(GPT_CTRL_SWR, &gpt->ctrl); in timer_init() 41 writel(0, &gpt->ctrl); /* We have no udelay by now */ in timer_init() 42 writel(0, &gpt->pre); /* prescaler = 1 */ in timer_init() 44 writel(readl(&gpt->ctrl) | GPT_CTRL_CLKSOURCE_32 | GPT_CTRL_FRR, in timer_init() 45 &gpt->ctrl); in timer_init() 46 writel(readl(&gpt->ctrl) | GPT_CTRL_TEN, &gpt->ctrl); in timer_init()
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/arm1136/mx35/ |
| H A D | timer.c | 30 struct gpt_regs *gpt = (struct gpt_regs *)GPT1_BASE_ADDR; in timer_init() local 34 writel(GPTCR_SWR, &gpt->ctrl); in timer_init() 39 writel(0, &gpt->ctrl); /* We have no udelay by now */ in timer_init() 40 writel(0, &gpt->pre); /* prescaler = 1 */ in timer_init() 42 writel(readl(&gpt->ctrl) | GPTCR_CLKSOURCE_32 | GPTCR_FRR, in timer_init() 43 &gpt->ctrl); in timer_init() 44 writel(readl(&gpt->ctrl) | GPTCR_TEN, &gpt->ctrl); in timer_init()
|
| /OK3568_Linux_fs/kernel/drivers/clocksource/ |
| H A D | timer-imx-gpt.c | 68 const struct imx_gpt_data *gpt; member 155 void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn; in mxc_clocksource_init() 207 imxtm->gpt->gpt_irq_disable(imxtm); in mxc_shutdown() 209 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn); in mxc_shutdown() 211 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp); in mxc_shutdown() 214 imxtm->gpt->gpt_irq_acknowledge(imxtm); in mxc_shutdown() 228 imxtm->gpt->gpt_irq_disable(imxtm); in mxc_set_oneshot() 231 u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn); in mxc_set_oneshot() 233 writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp); in mxc_set_oneshot() 236 imxtm->gpt->gpt_irq_acknowledge(imxtm); in mxc_set_oneshot() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/ |
| H A D | mpc5200b.dtsi | 64 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 72 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 79 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 86 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 93 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 100 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 107 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt"; 114 compatible = "fsl,mpc5200b-gpt","fsl,mpc5200-gpt";
|
| H A D | lite5200.dts | 63 compatible = "fsl,mpc5200-gpt"; 70 compatible = "fsl,mpc5200-gpt"; 76 compatible = "fsl,mpc5200-gpt"; 82 compatible = "fsl,mpc5200-gpt"; 88 compatible = "fsl,mpc5200-gpt"; 94 compatible = "fsl,mpc5200-gpt"; 100 compatible = "fsl,mpc5200-gpt"; 106 compatible = "fsl,mpc5200-gpt";
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | gpt.su | |
| /OK3568_Linux_fs/tools/linux/Firmware_Merger/ |
| H A D | user_manual.txt | 2 three kinds of firmware(1.flat rk firmware 2.flat gpt firmware 3.compact gpt firmware).flat firmwar… 4 is rk miniloader,firmware use flat rk format.when SPL is u-boot,firmware use flat gpt. 9 Gpt_Enable=0 /*flat gpt firmware*/ 10 Gpt_Enable=1 /*compact gpt firmware*/
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.gpt | 22 the gpt command in u-boot. 174 the generated UUID. The 'gpt guid' command reads the current value of the 187 gpt write mmc 0 $partitions 195 gpt verify mmc 0 [$partitions] 210 U-BOOT> gpt verify mmc 0 $partitions 217 communicate about software updates and boot failure. The 'gpt guid', 218 'gpt read', 'gpt rename' and 'gpt swap' commands facilitate 223 U-BOOT> gpt swap mmc 0 primary backup 230 U-BOOT> gpt rename mmc 0 1 primary 237 => gpt read host 0 [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | imx27.dtsi | 110 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt"; 119 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt"; 128 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt"; 387 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt"; 396 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt"; 447 compatible = "fsl,imx27-gpt", "fsl,imx21-gpt";
|
| H A D | imx25.dtsi | 355 compatible = "fsl,imx25-gpt", "fsl,imx31-gpt"; 363 compatible = "fsl,imx25-gpt", "fsl,imx31-gpt"; 371 compatible = "fsl,imx25-gpt", "fsl,imx31-gpt"; 379 compatible = "fsl,imx25-gpt", "fsl,imx31-gpt";
|
| /OK3568_Linux_fs/rkbin/tools/burner_image_kits/ |
| H A D | make.sh | 59 $upgrade_tool gpt $1 $temp_path"/"gpt.img > /dev/null 60 is_img_and_gen_file_from_src_2_dst $temp_path"/"gpt.img gpt.img
|
| /OK3568_Linux_fs/external/rkscript/ |
| H A D | 61-partition-init.rules | 17 # for rkflash gpt partition name /dev/block/by-name link 20 # for emmc gpt partition name /dev/block/by-name link 21 ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_ENTRY_NAME}=="?*", SYMLINK+="block/by-name/$env{ID_PA…
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gvt/ |
| H A D | trace.h | 191 TP_PROTO(int id, const char *tag, int page_id, void *gpt, int type), 193 TP_ARGS(id, tag, page_id, gpt, type), 202 id, tag, page_id, gpt, type); 209 TP_PROTO(int id, int page_id, void *gpt, int type, u64 v, 212 TP_ARGS(id, page_id, gpt, type, v, index), 221 id, page_id, gpt, type, v, index);
|
| /OK3568_Linux_fs/debian/overlay-debug/usr/lib/udev/rules.d/ |
| H A D | 61-partition-init.rules | 17 # for rkflash gpt partition name by-partlabel and /dev/block/by-name link 20 # for emmc gpt partition name /dev/block/by-name link 21 ENV{ID_PART_ENTRY_SCHEME}=="gpt", ENV{ID_PART_ENTRY_NAME}=="?*", SYMLINK+="block/by-name/$env{ID_PA…
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/powerpc/fsl/ |
| H A D | mpc5200.txt | 84 timer@<addr> fsl,mpc5200-gpt General purpose timers 102 fsl,mpc5200-gpt nodes 109 mode has priority over the gpt mode, i.e. if the watchdog is activated, any 110 gpt api call to this timer will fail with -EBUSY. 114 GPT0 will be marked as in-use watchdog, i.e. blocking every gpt access to it. 117 - just mark GPT0 as watchdog, blocking gpt accesses, and configure it later; 123 An mpc5200-gpt can be used as a single line GPIO controller. To do so, 124 add the following properties to the gpt node: 131 An mpc5200-gpt can be used as a single line edge sensitive interrupt 132 controller. To do so, add the following properties to the gpt node:
|
| /OK3568_Linux_fs/tools/windows/RKDevTool/RKDevTool_Release/ |
| H A D | revision.txt | 58 1.support to parse efi partition flag on gpt parameter 67 2.add destrory gpt during download parameter 90 1.fix lastusedlba in gpt bug 96 1.modify lastusedlba in gpt to assure that align with 64 sector
|
| /OK3568_Linux_fs/yocto/meta-rockchip/wic/ |
| H A D | generic-gptdisk.wks.in | 6 # 0~32K: gpt 7 bootloader --ptable gpt
|
| /OK3568_Linux_fs/external/recovery/update_engine/ |
| H A D | flash_image.c | 526 static void create_gpt_buffer(u8 *gpt, PSTRUCT_PARAM_ITEM p_param, int param_len, PSTRUCT_CONFIG_IT… in create_gpt_buffer() argument 528 legacy_mbr *mbr = (legacy_mbr *)gpt; in create_gpt_buffer() 529 gpt_header *gptHead = (gpt_header *)(gpt + SECTOR_SIZE); in create_gpt_buffer() 530 gpt_entry *gptEntry = (gpt_entry *)(gpt + 2 * SECTOR_SIZE); in create_gpt_buffer() 533 memset(gpt, 0, SECTOR_SIZE); in create_gpt_buffer() 540 memset(gpt + SECTOR_SIZE, 0, SECTOR_SIZE); in create_gpt_buffer() 556 memset(gpt + 2 * SECTOR_SIZE, 0, 32 * SECTOR_SIZE); in create_gpt_buffer() 592 …gptHead->partition_entry_array_crc32 = cpu_to_le32(crc32_le(0, gpt + 2 * SECTOR_SIZE, GPT_ENTRY_SI… in create_gpt_buffer() 593 gptHead->header_crc32 = cpu_to_le32(crc32_le(0, gpt + SECTOR_SIZE, sizeof(gpt_header))); in create_gpt_buffer()
|
| /OK3568_Linux_fs/buildroot/board/orangepi/orangepi-zero-plus2/ |
| H A D | genimage.cfg | 16 gpt = true 18 gpt-location = 1M
|
| /OK3568_Linux_fs/buildroot/board/orangepi/orangepi-pc-plus/ |
| H A D | genimage.cfg | 18 gpt = true 20 gpt-location = 1M
|
| /OK3568_Linux_fs/buildroot/board/orangepi/orangepi-r1/ |
| H A D | genimage.cfg | 18 gpt = true 20 gpt-location = 1M
|
| /OK3568_Linux_fs/kernel/drivers/staging/gasket/ |
| H A D | apex_driver.c | 512 struct gasket_page_table *gpt; in sysfs_show() local 529 gpt = gasket_dev->page_table[0]; in sysfs_show() 532 val = gasket_page_table_num_entries(gpt); in sysfs_show() 535 val = gasket_page_table_num_simple_entries(gpt); in sysfs_show() 538 val = gasket_page_table_num_active_pages(gpt); in sysfs_show()
|