From Fedora Project Wiki
No edit summary
Line 18: Line 18:
* Новые технологии (как основная цель вычислительные платформы)
* Новые технологии (как основная цель вычислительные платформы)
* Растущая база пользователей
* Растущая база пользователей
==Понимание ARM==
* История архитектуры ARM - [http://en.wikipedia.org/wiki/ARM_architecture#History here]
* Различаия в процессорах ARM - [http://en.wikipedia.org/wiki/List_of_ARM_microprocessor_cores here]
===Программная или аппаратная обработка чисел с плавающей точкой===
Fedora на данный момент предлагает два решения для ARM - 'arm(sfp)' и 'armhfp'.  Каждое определяет как значения с плавающей точкой передаются  функциям, посредством регистров процессора (sfp) или посредством регистров математического сопроцессора (hfp); Однако оба варианта API могут использовать математический сопроцессор для арифметических вычислений.
Here is the background: In older ARM chips (prior to ARM v7 "Application Profile"), the floating point unit (FPU, typically a vector floating point unit or "VFP") was optional. Therefore, function arguments were passed in the CPU registers or on the stack. However, when an FPU is available, moving floating-point values from the CPU registers to the FPU registers and back again has a significant cost which negates some of the advantage of having the additional arithmetic hardware. When the FPU became mandatory with ARMv7, it made sense to pass floating-point arguments directly in FPU registers. This is an incompatible ABI change, so programs which pass value in the CPU registers are incompatible with libraries that pass values in the FPU registers (and vice versa).
=== Currently-Supported ARM Architectures ===
'''armv7hl''' -  32-bit, little-endian, hfp for ARM v7 processors. Supported from F15 onwards.
'''armv5tel''' - 32-bit, little-endian, sfp for ARM v5 to v7 processors. Supported until F18 (including F18 updates).
(Community builds: Seneca is building for the armv6hl architecture specifically for the [[Architectures/ARM/F18/Remixes#Raspberry_Pi Raspberry Pi]])
=== Future ARM Architectures ===
'''aarch64''' - 64-bit (little-endian and hfp are assumed) for ARMv8+ processors. This is currently being [[Architectures/ARM/AArch64| bootstrapped]].
=== ARM Form Factors ===
Being the most popular architecture in the world, ARM processors can be found in a variety of form factors that include:
* Tablets/Notebooks (Google Chromebook)
* Development Boards (Pandaboard, Beagleboard, Trimslice)
* Hyperscale Server Systems (Calxeda Highbank)
===Additional ARM technologies===
* [http://en.wikipedia.org/wiki/ARM_architecture#Thumb Thumb(2,EE)]
* [http://www.arm.com/products/processors/technologies/jazelle.php Jazelle]
* [http://www.arm.com/products/processors/technologies/neon.php NEON]
* [http://www.arm.com/products/processors/technologies/dsp-simd.php DSP & SIMD]
* [http://www.arm.com/products/processors/technologies/trustzone.php Trustzone]
* [http://www.arm.com/products/processors/technologies/biglittleprocessing.php big.LITTLE Processing]
===What is U-Boot===
U-Boot -the Universal Boot Loader is the firmware used on embedded systems such as ARM, MIPS and Embedded Power architectures. It performs the task of other bootloader's by loading the Linux kernel and operating system into memory for execution, but is also responsible for hardware initialization comparable to the BIOS on X86 hardware.
* Additional information on [http://www.denx.de/wiki/U-Boot U-Boot]
==== Why U-Boot?====
The Basic Input/Output System (BIOS) is exclusively available on x86 systems and performs a variety of tasks outside of just loading the kernel into memory. While BIOS on ARM is feasible, development costs exceed the potential benefits and ARM systems use the faster bootloader approach. The Unified Extensible Firmware Interface (UEFI) is replacing the BIOS on modern computers and is also compatible with the ARM architecture.
* There are many variations of U-Boot which includes - vboot, aboot, hboot.
===Generating addresses for kernel/initrd/dtb===
==Quick Start==
===What's the quickest way to get Fedora on my device?===
Download the pre-built images corresponding to your device and following the instructions for writing the image to your media.
====Platforms supported by Fedora====
* [[Architectures/ARM/F18/Pandaboard|Pandaboard]]
* [[Architectures/ARM/F18/Trimslice|Trimslice]]
* [[Architectures/ARM/F18/BeagleBoard-xM|Beagleboard-xM]]
* [[Architectures/ARM/F18/GuruPlug|GuruPlug (Kirkwood Devices)]]
* [[Architectures/ARM/F18/HighBank|Calxeda EnergyCore (HighBank)]]
For virtualization through QEMU:
* [[Architectures/ARM/F18/Versatile_Express|Versatile Express]]
====Platforms supported by Fedora Remixes====
* XO 1.75
* OpenBlocks AX3
* [[Architectures/ARM/F18/Remixes#Allwinner_A10 |Allwinner A10-based devices]]
* [[Architectures/ARM/F18/Remixes#Samsung_Chromebook|Samsung Chromebook]]
* [[Architectures/ARM/F18/Remixes#Raspberry_Pi |Raspberry Pi]]
=== Once my device is running Fedora, how do I get developing/contributing to Fedora ARM?===
* Introduce yourself on the mailing list
** Mailing list: {{fplist|arm}} ([http://lists.fedoraproject.org/pipermail/arm/ archives])
* Hang out in the IRC channel
** IRC: {{fpchat|#fedora-arm}} on http://freenode.net
* Join our weekly meeting:
** IRC: {{fpchat|#fedora-meeting-1}} each Wednesday at 20:00 UTC (4PM EDT) on http://freenode.net ([https://fedoraproject.org/wiki/Architectures/ARM/Meetings/Archive/ archives])
* Help fix packages that are failing to build on ARM
** [http://142.204.133.82/jon/koji/kc.f18.diff.html Fedora 18]
** [http://142.204.133.82/jon/koji/kc.f19.diff.html Fedora 19]
** [http://142.204.133.82/jon/koji/kc.f20.diff.html Fedora 20(rawhide)]
* Ask questions, and help make this documentation better
* <b>Developers</b> - Ensure patches are going upstream!
===Understanding the Fedora tools===
====Koji====
Koji is the software that builds [http://koji.fedoraproject.org/koji/ RPM packages for the Fedora project]. It uses [http://fedoraproject.org/wiki/Projects/Mock Mock] to create chroot environments to perform builds. To download the source code, report bugs, join the mailing list etc., see the [https://fedorahosted.org/koji/wiki Koji project website] .
* [[Koji|Koji Overview]]
** [[Using_the_Koji_build_system|Using the Koji build system]] (includes cli and web interface. Use of fedpkg)
====Koji-shadow====
Koji-Shadow is a script that is used by secondary architectures to 'follow' package builds performed on the primary architecture (PA) [[http://koji.fedoraproject.org Koji instance]]. When a build is submitted on PA, the script will pick it up and submit the build for completion on the secondary architecture. This ensures secondary architectures build the same packages used in primary within a reasonable time frame, developers need to only submit their package once, and it is propagated to all secondary architectures running Koji-Shadow. Koji-Shadow is included in the 'koji-utils' package.
=====More information on Koji=====
* [[koji/ServerHowTo| Run Your Own Koji Build Server]]
* [[koji/KojiLiveCDHowTo| Building Images in Koji]]
* [[koji/Policies| Defining hub policies]]
====Bodhi====
[https://fedorahosted.org/bodhi/ Bodhi] pronounced as bo-dee is a buddhist term for the wisdom by which one attains enlightenment. Bodhi is a modular web-based system that facilitates the process of publishing package updates for Fedora. It maintains a single stage of repositories by adding/updating/removing packages.
* For more information on [[Bodhi|Bodhi]]
==The Future of Fedora and the ARM Architecture==
====Promotion to a Primary Architecture====
ARM is currently considered a Secondary Architecture in Fedora and would greatly benefit from being promoted to a primary architecture, a detailed draft proposal can be found [[Architectures/ARM/Planning/Primary|here]].
====Future Boot Options====
* Grub2
====Standards and Engineering Bodies====
* [http://www.linaro.org/ Linaro]

Revision as of 07:32, 12 August 2013

Secret Decoder Ring

Переходим на ARM ? - Secret decoder ring для пользователей Fedora желающих больше узнать о проекте Fedora на процессорах ARM.

Введение

Процессоры архитектуры ARM являются наиболее распространённой в мире; исторически начали использоваться в сотовых телефонах и встроенных устройствах, всё чаще находят своё применение в планшетах и серверах с низким энергопотреблением.

Проект Fedora-ARM нацелен на работу проекта Fedora с данным семейство процессоров.

Почему ARM?

  • Низкое энергопотребление / Большее КПД
  • Высокоуровневая аппаратная интеграция -- конструкция "однокристальной системы", с уменьшенным пространством и требованием к охлаждению
  • Доступность от различных поставщиков
  • Низкая стоимость

Почему проект Fedora заботится о ARM?

  • Новые технологии (как основная цель вычислительные платформы)
  • Растущая база пользователей

Понимание ARM

  • История архитектуры ARM - here
  • Различаия в процессорах ARM - here

Программная или аппаратная обработка чисел с плавающей точкой

Fedora на данный момент предлагает два решения для ARM - 'arm(sfp)' и 'armhfp'. Каждое определяет как значения с плавающей точкой передаются функциям, посредством регистров процессора (sfp) или посредством регистров математического сопроцессора (hfp); Однако оба варианта API могут использовать математический сопроцессор для арифметических вычислений.

Here is the background: In older ARM chips (prior to ARM v7 "Application Profile"), the floating point unit (FPU, typically a vector floating point unit or "VFP") was optional. Therefore, function arguments were passed in the CPU registers or on the stack. However, when an FPU is available, moving floating-point values from the CPU registers to the FPU registers and back again has a significant cost which negates some of the advantage of having the additional arithmetic hardware. When the FPU became mandatory with ARMv7, it made sense to pass floating-point arguments directly in FPU registers. This is an incompatible ABI change, so programs which pass value in the CPU registers are incompatible with libraries that pass values in the FPU registers (and vice versa).

Currently-Supported ARM Architectures

armv7hl - 32-bit, little-endian, hfp for ARM v7 processors. Supported from F15 onwards.

armv5tel - 32-bit, little-endian, sfp for ARM v5 to v7 processors. Supported until F18 (including F18 updates).

(Community builds: Seneca is building for the armv6hl architecture specifically for the Architectures/ARM/F18/Remixes#Raspberry_Pi Raspberry Pi)

Future ARM Architectures

aarch64 - 64-bit (little-endian and hfp are assumed) for ARMv8+ processors. This is currently being bootstrapped.

ARM Form Factors

Being the most popular architecture in the world, ARM processors can be found in a variety of form factors that include:

  • Tablets/Notebooks (Google Chromebook)
  • Development Boards (Pandaboard, Beagleboard, Trimslice)
  • Hyperscale Server Systems (Calxeda Highbank)

Additional ARM technologies

What is U-Boot

U-Boot -the Universal Boot Loader is the firmware used on embedded systems such as ARM, MIPS and Embedded Power architectures. It performs the task of other bootloader's by loading the Linux kernel and operating system into memory for execution, but is also responsible for hardware initialization comparable to the BIOS on X86 hardware.

  • Additional information on U-Boot

Why U-Boot?

The Basic Input/Output System (BIOS) is exclusively available on x86 systems and performs a variety of tasks outside of just loading the kernel into memory. While BIOS on ARM is feasible, development costs exceed the potential benefits and ARM systems use the faster bootloader approach. The Unified Extensible Firmware Interface (UEFI) is replacing the BIOS on modern computers and is also compatible with the ARM architecture.

  • There are many variations of U-Boot which includes - vboot, aboot, hboot.

Generating addresses for kernel/initrd/dtb

Quick Start

What's the quickest way to get Fedora on my device?

Download the pre-built images corresponding to your device and following the instructions for writing the image to your media.

Platforms supported by Fedora

For virtualization through QEMU:

Platforms supported by Fedora Remixes

Once my device is running Fedora, how do I get developing/contributing to Fedora ARM?

Understanding the Fedora tools

Koji

Koji is the software that builds RPM packages for the Fedora project. It uses Mock to create chroot environments to perform builds. To download the source code, report bugs, join the mailing list etc., see the Koji project website .

Koji-shadow

Koji-Shadow is a script that is used by secondary architectures to 'follow' package builds performed on the primary architecture (PA) [Koji instance]. When a build is submitted on PA, the script will pick it up and submit the build for completion on the secondary architecture. This ensures secondary architectures build the same packages used in primary within a reasonable time frame, developers need to only submit their package once, and it is propagated to all secondary architectures running Koji-Shadow. Koji-Shadow is included in the 'koji-utils' package.

More information on Koji

Bodhi

Bodhi pronounced as bo-dee is a buddhist term for the wisdom by which one attains enlightenment. Bodhi is a modular web-based system that facilitates the process of publishing package updates for Fedora. It maintains a single stage of repositories by adding/updating/removing packages.

  • For more information on Bodhi

The Future of Fedora and the ARM Architecture

Promotion to a Primary Architecture

ARM is currently considered a Secondary Architecture in Fedora and would greatly benefit from being promoted to a primary architecture, a detailed draft proposal can be found here.

Future Boot Options

  • Grub2

Standards and Engineering Bodies