Home
last modified time | relevance | path

Searched full:xscale (Results 1 – 25 of 132) sorted by relevance

123456

/openbmc/openbmc/poky/meta/conf/machine/include/arm/armv5/
H A Dtune-xscale.inc5 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 …]
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Dgui.py47 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 Ddraw.py276 xscale, yscale, x_trans, y_trans): argument
277 x = (point[0] - x_base) * xscale + x_trans
287 xscale = float (chart_bounds[2]) / (max_x - x_shift)
289 xscale = float (chart_bounds[2])
300 first = transform_point_coords (data[0], x_shift, ybase, xscale, yscale, \
302 last = transform_point_coords (data[-1], x_shift, ybase, xscale, yscale, \
308 x, y = transform_point_coords (point, x_shift, ybase, xscale, yscale, \
333 def extents(options, xscale, trace): argument
351 w = int ((end - start) * sec_w_base * xscale) + 2 * off_x
705 def render(ctx, options, xscale, trace): argument
[all …]
/openbmc/linux/arch/arm/mm/
H A Dproc-xscale.S3 * 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 Dcopypage-xscale.c3 * linux/arch/arm/lib/copypage-xscale.S
7 * This handles the mini data cache, as found on SA11x0 and XScale
29 * XScale mini-dcache optimised copy_user_highpage
45 .arch xscale \n\ in mc_copy_user_page()
105 * XScale optimised clear_user_page
112 .arch xscale \n\ in xscale_mc_clear_user_highpage()
H A Dcopypage-xsc3.c7 * Adapted for 3rd gen XScale core, no more mini-dcache
32 .arch xscale \n\ in xsc3_mc_copy_user_page()
78 * XScale optimised clear_user_page
84 .arch xscale \n\ in xsc3_mc_clear_user_highpage()
H A Dfsr-2level.c32 { 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 */
/openbmc/linux/arch/arm/kernel/
H A Dxscale-cp0.c3 * 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()
172 pr_info("XScale DSP coprocessor detected.\n"); in xscale_cp0_init()
H A DMakefile75 obj-$(CONFIG_CPU_XSCALE) += xscale-cp0.o
76 obj-$(CONFIG_CPU_XSC3) += xscale-cp0.o
77 obj-$(CONFIG_CPU_MOHAWK) += xscale-cp0.o
/openbmc/linux/drivers/video/fbdev/omap/
H A Dlcd_dma.c63 int xscale, yscale; member
122 void omap_set_lcd_dma_b1_scale(unsigned int xscale, unsigned int yscale) in omap_set_lcd_dma_b1_scale() argument
128 lcd_dma.xscale = xscale; in omap_set_lcd_dma_b1_scale()
141 unsigned int xscale, yscale; in set_b1_regs() local
159 xscale = lcd_dma.xscale ? lcd_dma.xscale : 1; in set_b1_regs()
164 ((y) * vxres * yscale + (x) * xscale) * es) in set_b1_regs()
271 lcd_dma.vxres || lcd_dma.xscale || lcd_dma.yscale)) in set_b1_regs()
322 lcd_dma.xscale = 0; in omap_request_lcd_dma()
/openbmc/linux/drivers/clk/spear/
H A Dspear1340_clock.c264 {.xscale = 5, .yscale = 122, .eq = 0},
266 {.xscale = 10, .yscale = 204, .eq = 0},
268 {.xscale = 4, .yscale = 25, .eq = 0},
270 {.xscale = 4, .yscale = 21, .eq = 0},
272 {.xscale = 5, .yscale = 18, .eq = 0},
274 {.xscale = 2, .yscale = 6, .eq = 0},
276 {.xscale = 5, .yscale = 12, .eq = 0},
278 {.xscale = 2, .yscale = 4, .eq = 0},
280 {.xscale = 5, .yscale = 18, .eq = 1},
282 {.xscale = 1, .yscale = 3, .eq = 1},
[all …]
H A Dspear1310_clock.c252 {.xscale = 10, .yscale = 204, .eq = 0}, /* 12.29 MHz */
253 {.xscale = 4, .yscale = 21, .eq = 0}, /* 48 MHz */
254 {.xscale = 2, .yscale = 6, .eq = 0}, /* 83 MHz */
255 {.xscale = 2, .yscale = 4, .eq = 0}, /* 125 MHz */
256 {.xscale = 1, .yscale = 3, .eq = 1}, /* 166 MHz */
257 {.xscale = 1, .yscale = 2, .eq = 1}, /* 250 MHz */
263 {.xscale = 2, .yscale = 6, .eq = 0}, /* divided by 6 */
264 {.xscale = 2, .yscale = 4, .eq = 0}, /* divided by 4 */
265 {.xscale = 1, .yscale = 3, .eq = 1}, /* divided by 3 */
266 {.xscale = 1, .yscale = 2, .eq = 1}, /* divided by 2 */
[all …]
H A Dspear3xx_clock.c107 {.xscale = 1, .yscale = 81, .eq = 0}, /* 2.049 MHz */
108 {.xscale = 1, .yscale = 59, .eq = 0}, /* 2.822 MHz */
109 {.xscale = 2, .yscale = 81, .eq = 0}, /* 4.098 MHz */
110 {.xscale = 3, .yscale = 89, .eq = 0}, /* 5.644 MHz */
111 {.xscale = 4, .yscale = 81, .eq = 0}, /* 8.197 MHz */
112 {.xscale = 4, .yscale = 59, .eq = 0}, /* 11.254 MHz */
113 {.xscale = 2, .yscale = 27, .eq = 0}, /* 12.296 MHz */
114 {.xscale = 2, .yscale = 8, .eq = 0}, /* 41.5 MHz */
115 {.xscale = 2, .yscale = 4, .eq = 0}, /* 83 MHz */
116 {.xscale = 1, .yscale = 2, .eq = 1}, /* 166 MHz */
H A Dspear6xx_clock.c91 {.xscale = 2, .yscale = 27, .eq = 0}, /* 12.296 MHz */
92 {.xscale = 2, .yscale = 8, .eq = 0}, /* 41.5 MHz */
93 {.xscale = 2, .yscale = 4, .eq = 0}, /* 83 MHz */
94 {.xscale = 1, .yscale = 2, .eq = 1}, /* 166 MHz */
/openbmc/linux/drivers/net/ethernet/xscale/
H A DKconfig3 # 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
/openbmc/linux/Documentation/arch/arm/
H A Dmemory.rst25 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 Dmarvell.rst368 * This line of SoCs originates from the XScale family developed by
373 * Due to their XScale origin, these SoCs have virtually nothing in
422 * This line of SoCs originates from the XScale family developed by
426 * Due to their XScale origin, these SoCs have virtually nothing in
471 The XScale cores were designed by Intel, and shipped by Marvell in the older
473 and that evolved into Sheeva. The XScale and Feroceon cores were phased out
477 XScale 1
480 XScale 2
483 XScale 3
/openbmc/linux/arch/arm/boot/compressed/
H A Dhead-xscale.S3 * linux/arch/arm/boot/compressed/head-xscale.S
5 * XScale specific tweaks. This is merged into head.S by the linker.
/openbmc/linux/arch/arm/include/asm/
H A Dglue-df.h24 * xscale - ARMv5 with Thumb with Xscale extensions
H A Dcputype.h299 case 0x69052000: /* Intel XScale 1 */ in cpu_is_xscale_family()
300 case 0x69054000: /* Intel XScale 2 */ in cpu_is_xscale_family()
301 case 0x69056000: /* Intel XScale 3 */ in cpu_is_xscale_family()
302 case 0x56056000: /* Marvell XScale 3 */ in cpu_is_xscale_family()
/openbmc/linux/arch/arm/boot/dts/marvell/
H A Dpxa168.dtsi61 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
71 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
81 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
H A Dpxa910.dtsi71 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
81 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
91 compatible = "mrvl,mmp-uart", "intel,xscale-uart";
/openbmc/linux/arch/arm/boot/dts/intel/ixp/
H A Dintel-ixp4xx.dtsi3 * Device Tree file for Intel XScale Network Processors
85 compatible = "intel,xscale-uart";
99 compatible = "intel,xscale-uart";
/openbmc/linux/drivers/mtd/maps/
H A Dpxa2xx-flash.c3 * Map driver for Intel XScale PXA2xx platforms.
140 MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");
/openbmc/u-boot/arch/arm/lib/
H A Drelocate.S122 * On xscale, icache must be invalidated and write buffers drained,
123 * even with cache disabled - 4.2.7 of xscale core developer's manual

123456