| /OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/arm/armv5/ |
| H A D | tune-xscale.inc | 5 TUNEVALID[xscale] = "Enable PXA255/PXA26x Xscale specific processor optimizations" 6 TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'xscale', ' -mcpu=xscale', '', d)}" 7 MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'xscale', 'armv5:', '', d)}" 9 AVAILTUNES += "xscale" 10 ARMPKGARCH:tune-xscale = "xscale" 12 TUNE_FEATURES:tune-xscale = "arm thumb dsp xscale" 13 PACKAGE_EXTRA_ARCHS:tune-xscale = "${PACKAGE_EXTRA_ARCHS:tune-armv5te} xscale xscalet xscalee xscal… 15 AVAILTUNES += "xscale-be" 16 ARMPKGARCH:tune-xscale-be = "xscale" 18 TUNE_FEATURES:tune-xscale-be = "${TUNE_FEATURES:tune-xscale} bigendian" [all …]
|
| /OK3568_Linux_fs/external/xserver/glamor/ |
| H A D | glamor_utils.h | 310 #define _glamor_set_normalize_tpoint(xscale, yscale, _tx_, _ty_, \ argument 313 (texcoord)[0] = t_from_x_coord_x(xscale, _tx_); \ 319 #define glamor_set_transformed_point(priv, matrix, xscale, \ argument 332 (texcoord)[0] = t_from_x_coord_x(xscale, tx); \ 339 xscale, \ argument 345 glamor_set_transformed_point(priv, matrix, xscale, yscale, \ 347 glamor_set_transformed_point(priv, matrix, xscale, yscale, \ 349 glamor_set_transformed_point(priv, matrix, xscale, yscale, \ 351 glamor_set_transformed_point(priv, matrix, xscale, yscale, \ 358 xscale, \ argument [all …]
|
| H A D | glamor_gradient.c | 637 GLfloat *xscale, GLfloat *yscale, in _glamor_gradient_set_pixmap_destination() argument 655 pixmap_priv_get_dest_scale(pixmap, pixmap_priv, xscale, yscale); in _glamor_gradient_set_pixmap_destination() 657 DEBUGF("xscale = %f, yscale = %f," in _glamor_gradient_set_pixmap_destination() 659 *xscale, *yscale, x_source, y_source, in _glamor_gradient_set_pixmap_destination() 664 glamor_set_normalize_vcoords_tri_strip(*xscale, *yscale, in _glamor_gradient_set_pixmap_destination() 673 glamor_set_normalize_tcoords_tri_stripe(*xscale, *yscale, in _glamor_gradient_set_pixmap_destination() 811 GLfloat xscale, yscale; in glamor_generate_radial_gradient_picture() local 961 (screen, glamor_priv, dst_picture, &xscale, &yscale, x_source, y_source, in glamor_generate_radial_gradient_picture() 1123 GLfloat xscale, yscale; in glamor_generate_linear_gradient_picture() local 1279 (screen, glamor_priv, dst_picture, &xscale, &yscale, x_source, y_source, in glamor_generate_linear_gradient_picture() [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/mm/ |
| H A D | proc-xscale.S | 3 * linux/arch/arm/mm/proc-xscale.S 9 * MMU functions for the Intel XScale CPUs 56 * Without this the XScale core exhibits cache eviction problems and no one 172 * XScale supports clock switching, but using idle mode support 415 define_cache_functions xscale 589 define_processor_functions xscale, dabort=v5t_early_abort, pabort=legacy_pabort, suspend=1 596 string cpu_80200_A0_A1_name, "XScale-80200 A0/A1" 597 string cpu_80200_name, "XScale-80200" 598 string cpu_80219_name, "XScale-80219" 599 string cpu_8032x_name, "XScale-IOP8032x Family" [all …]
|
| H A D | copypage-xscale.c | 3 * linux/arch/arm/lib/copypage-xscale.S 7 * This handles the mini data cache, as found on SA11x0 and XScale 28 * XScale mini-dcache optimised copy_user_highpage 44 .arch xscale \n\ in mc_copy_user_page() 103 * XScale optimised clear_user_page 110 .arch xscale \n\ in xscale_mc_clear_user_highpage()
|
| H A D | fsr-2level.c | 32 { do_bad, SIGBUS, 0, "lock abort" }, /* xscale */ 34 { do_bad, SIGBUS, BUS_OBJERR, "imprecise external abort" }, /* xscale */ 36 { do_bad, SIGBUS, 0, "dcache parity error" }, /* xscale */
|
| /OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | gui.py | 47 def __init__(self, trace, options, xscale): argument 69 self.xscale = xscale 72 self.chart_width, self.chart_height = draw.extents(self.options, self.xscale, self.trace) 97 draw.render(cr, self.options, self.xscale, self.trace) 115 def set_xscale(self, xscale): argument 117 self.xscale = xscale 118 self.chart_width, self.chart_height = draw.extents(self.options, self.xscale, self.trace) 123 self.set_xscale (int(self.xscale * 1.5 + 0.5)) 126 self.set_xscale (max(int(self.xscale / 1.5), 1)) 143 self.chart_width, self.chart_height = draw.extents(self.options, self.xscale, self.trace) [all …]
|
| H A D | draw.py | 260 xscale, yscale, x_trans, y_trans): argument 261 x = (point[0] - x_base) * xscale + x_trans 271 xscale = float (chart_bounds[2]) / (max_x - x_shift) 273 xscale = float (chart_bounds[2]) 284 first = transform_point_coords (data[0], x_shift, ybase, xscale, yscale, \ 286 last = transform_point_coords (data[-1], x_shift, ybase, xscale, yscale, \ 292 x, y = transform_point_coords (point, x_shift, ybase, xscale, yscale, \ 317 def extents(options, xscale, trace): argument 335 w = int ((end - start) * sec_w_base * xscale) + 2 * off_x 568 def render(ctx, options, xscale, trace): argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/clk/spear/ |
| H A D | spear1340_clock.c | 267 {.xscale = 5, .yscale = 122, .eq = 0}, 269 {.xscale = 10, .yscale = 204, .eq = 0}, 271 {.xscale = 4, .yscale = 25, .eq = 0}, 273 {.xscale = 4, .yscale = 21, .eq = 0}, 275 {.xscale = 5, .yscale = 18, .eq = 0}, 277 {.xscale = 2, .yscale = 6, .eq = 0}, 279 {.xscale = 5, .yscale = 12, .eq = 0}, 281 {.xscale = 2, .yscale = 4, .eq = 0}, 283 {.xscale = 5, .yscale = 18, .eq = 1}, 285 {.xscale = 1, .yscale = 3, .eq = 1}, [all …]
|
| H A D | spear1310_clock.c | 255 {.xscale = 10, .yscale = 204, .eq = 0}, /* 12.29 MHz */ 256 {.xscale = 4, .yscale = 21, .eq = 0}, /* 48 MHz */ 257 {.xscale = 2, .yscale = 6, .eq = 0}, /* 83 MHz */ 258 {.xscale = 2, .yscale = 4, .eq = 0}, /* 125 MHz */ 259 {.xscale = 1, .yscale = 3, .eq = 1}, /* 166 MHz */ 260 {.xscale = 1, .yscale = 2, .eq = 1}, /* 250 MHz */ 266 {.xscale = 2, .yscale = 6, .eq = 0}, /* divided by 6 */ 267 {.xscale = 2, .yscale = 4, .eq = 0}, /* divided by 4 */ 268 {.xscale = 1, .yscale = 3, .eq = 1}, /* divided by 3 */ 269 {.xscale = 1, .yscale = 2, .eq = 1}, /* divided by 2 */ [all …]
|
| H A D | spear3xx_clock.c | 109 {.xscale = 1, .yscale = 81, .eq = 0}, /* 2.049 MHz */ 110 {.xscale = 1, .yscale = 59, .eq = 0}, /* 2.822 MHz */ 111 {.xscale = 2, .yscale = 81, .eq = 0}, /* 4.098 MHz */ 112 {.xscale = 3, .yscale = 89, .eq = 0}, /* 5.644 MHz */ 113 {.xscale = 4, .yscale = 81, .eq = 0}, /* 8.197 MHz */ 114 {.xscale = 4, .yscale = 59, .eq = 0}, /* 11.254 MHz */ 115 {.xscale = 2, .yscale = 27, .eq = 0}, /* 12.296 MHz */ 116 {.xscale = 2, .yscale = 8, .eq = 0}, /* 41.5 MHz */ 117 {.xscale = 2, .yscale = 4, .eq = 0}, /* 83 MHz */ 118 {.xscale = 1, .yscale = 2, .eq = 1}, /* 166 MHz */
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-omap1/ |
| H A D | lcd_dma.c | 60 int xscale, yscale; member 119 void omap_set_lcd_dma_b1_scale(unsigned int xscale, unsigned int yscale) in omap_set_lcd_dma_b1_scale() argument 125 lcd_dma.xscale = xscale; in omap_set_lcd_dma_b1_scale() 138 unsigned int xscale, yscale; in set_b1_regs() local 156 xscale = lcd_dma.xscale ? lcd_dma.xscale : 1; in set_b1_regs() 161 ((y) * vxres * yscale + (x) * xscale) * es) in set_b1_regs() 268 lcd_dma.vxres || lcd_dma.xscale || lcd_dma.yscale)) in set_b1_regs() 319 lcd_dma.xscale = 0; in omap_request_lcd_dma()
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | xscale-cp0.c | 3 * linux/arch/arm/kernel/xscale-cp0.c 5 * XScale DSP and iWMMXt coprocessor context switching and handling 155 /* do not attempt to probe iwmmxt on non-xscale family CPUs */ in xscale_cp0_init() 164 pr_warn("CAUTION: XScale iWMMXt coprocessor detected, but kernel support is missing.\n"); in xscale_cp0_init() 166 pr_info("XScale iWMMXt coprocessor detected.\n"); in xscale_cp0_init() 171 pr_info("XScale DSP coprocessor detected.\n"); in xscale_cp0_init()
|
| H A D | Makefile | 73 obj-$(CONFIG_CPU_XSCALE) += xscale-cp0.o 74 obj-$(CONFIG_CPU_XSC3) += xscale-cp0.o 75 obj-$(CONFIG_CPU_MOHAWK) += xscale-cp0.o
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/xscale/ |
| H A D | Kconfig | 3 # Intel XScale IXP device configuration 7 bool "Intel XScale IXP devices" 16 the questions about XScale IXP devices. If you say Y, you will be
|
| /OK3568_Linux_fs/kernel/Documentation/arm/ |
| H A D | memory.rst | 25 For SA11xx and Xscale, this is used to 38 fffe0000 fffeffff XScale cache flush area. This is used 39 in proc-xscale.S to flush the whole data 40 cache. (XScale does not have TCM.)
|
| H A D | marvel.rst | 322 * This line of SoCs originates from the XScale family developed by 327 * Due to their XScale origin, these SoCs have virtually nothing in 378 * This line of SoCs originates from the XScale family developed by 382 * Due to their XScale origin, these SoCs have virtually nothing in 429 The XScale cores were designed by Intel, and shipped by Marvell in the older 431 and that evolved into Sheeva. The XScale and Feroceon cores were phased out 435 XScale 1 438 XScale 2 441 XScale 3
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-iop32x/ |
| H A D | pmu.c | 3 * PMU IRQ registration for the iop3xx xscale PMU families. 17 .name = "xscale-pmu",
|
| /OK3568_Linux_fs/kernel/arch/arm/include/asm/ |
| H A D | cputype.h | 295 case 0x69052000: /* Intel XScale 1 */ in cpu_is_xscale_family() 296 case 0x69054000: /* Intel XScale 2 */ in cpu_is_xscale_family() 297 case 0x69056000: /* Intel XScale 3 */ in cpu_is_xscale_family() 298 case 0x56056000: /* Marvell XScale 3 */ in cpu_is_xscale_family()
|
| H A D | glue-df.h | 24 * xscale - ARMv5 with Thumb with Xscale extensions
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | pxa168.dtsi | 59 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 69 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 79 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
|
| H A D | pxa910.dtsi | 71 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 81 compatible = "mrvl,mmp-uart", "intel,xscale-uart"; 91 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
|
| H A D | intel-ixp4xx.dtsi | 3 * Device Tree file for Intel XScale Network Processors 24 compatible = "intel,xscale-uart";
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/compressed/ |
| H A D | head-xscale.S | 3 * linux/arch/arm/boot/compressed/head-xscale.S 5 * XScale specific tweaks. This is merged into head.S by the linker.
|
| /OK3568_Linux_fs/buildroot/package/freerdp/ |
| H A D | 0002-Fixed-variable-declaration-in-loop.patch | 18 double xscale; 27 xTargetSize = pointer->width * xscale;
|