It seems JSF is now considered the only view technology in JavaEE, although I'm not aware of JSP being deprecated (q1: is it?).
JSF is not a view technology. JSF is a component based MVC framework. JSP as being a view technology is in Java EE 6 succeeded by Facelets. The Facelets introduction in Java EE 6 tutorial states the following:
JavaServer Pages (JSP) technology, previously used as the presentation technology for JavaServer Faces, does not support all the new features available in JavaServer Faces 2.0. JSP technology is considered to be a deprecated presentation technology for JavaServer Faces 2.0. Facelets is a part of the JavaServer Faces specification and also the preferred presentation technology for building JavaServer Faces technology-based applications.
It does indeed nowhere explicitly say that "pure" JSP at its whole own is deprecated for Java EE. Oracle is this way likely trying to push JSF forward. Which has admittedly its own advantages. Noted should be that Facelets can also be used as a standalone view technology in combination with other servlets than the FacesServlet, either homegrown or provided by a 3rd party request based MVC framework (only ones without the need for JSP taglibs). You can just map the FacesServlet on *.xhtml and basically just use alone the <ui:xxx> tags (instead of the <jsp:xxx> ones in legacy JSP) in combination with plain vanilla HTML like as you would do in JSP. You do not necessarily need the JSF core and html tags when working with Facelets.
I tried to search for a separate tutorial, but the site is a mess (I found a page about JSP, but it still says "Java 2 platform, enterprise edition". So, q2: where is the official JSP tutorial for JavaEE6.
There's none. Just grab the Java EE 5 one or even the J2EE 1.4 one. JSP has not changed that much anyway. There's basically nothing new in JSP 2.2 as compared to JSP 2.1. EL 2.2 has only one major change (the support for method arguments). The same story applies to JSP 2.1 as compared to JSP 2.0. The major changes were in EL only (the support for deferred EL, which is taken over from JSF 1.0/1.1).
You don't need to be shy when learning JSP by Java EE 5 tutorial, let alone by J2EE 1.4 tutorial. You should only not go further back to JSP 1.2 / J2EE 1.3 or before, that's when EL didn't exist in JSP. You don't want to have that :)